diff --git a/.gitignore b/.gitignore index cc27b99..e3a6566 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,4 @@ .npmrc +.http-mitm-proxy/ /dist/ /node_modules/ diff --git a/ava.config.mjs b/ava.config.mjs index 47d4bb2..e150149 100644 --- a/ava.config.mjs +++ b/ava.config.mjs @@ -17,8 +17,8 @@ export default { timeout: ["dryrun", "record", "update", "wild"].includes( process.env.NOCK_BACK_MODE ?? "lockdown", ) - ? "60s" - : "10s", + ? "240s" + : "60s", // Use child processes instead of threads because notch isn't thread safe. workerThreads: false, }; diff --git a/package.json b/package.json index 47f4b32..82df0a0 100644 --- a/package.json +++ b/package.json @@ -19,7 +19,12 @@ "cryptography", "crypto" ], - "files": ["dist/", "sindri-manifest.json", "src/", "templates/"], + "files": [ + "dist/", + "sindri-manifest.json", + "src/", + "templates/" + ], "main": "dist/lib/index.js", "module": "dist/lib/index.mjs", "bin": { @@ -52,7 +57,9 @@ "test:fast": "ava", "test:record": "NOCK_BACK_MODE=update yarn test", "test:watch": "NODE_ENV=development NOCK_BACK_MODE=dryrun nodemon --watch src/ --watch test/ --ext js,cjs,mjs,ts,cts,mts --exec 'tsup --silent && ava'", - "type-check": "tsc --noEmit" + "type-check": "tsc --noEmit", + "/***** Hooks *****/": "", + "postinstall": "patch-package" }, "repository": { "type": "git", @@ -68,26 +75,34 @@ "axios": "^1.6.2", "commander": "^11.1.0", "env-paths": "^2.2.1", - "form-data": "^4.0.0", + "formdata-node": "^6.0.3", + "gzip-js": "^0.3.2", "ignore-walk": "^6.0.4", "jsonschema": "^1.4.1", "lodash": "^4.17.21", "nunjucks": "^3.2.4", + "patch-package": "^8.0.0", "pino": "^8.16.2", "pino-pretty": "^10.2.3", + "postinstall-postinstall": "^2.1.0", "rc": "^1.2.8", "tar": "^6.2.0", + "tar-js": "^0.3.0", "zod": "^3.22.4" }, "devDependencies": { "@ava/typescript": "^4.1.0", "@commander-js/extra-typings": "^11.1.0", "@tsconfig/node18": "^18.2.2", + "@types/get-port": "^4.2.0", + "@types/gzip-js": "^0.3.5", "@types/ignore-walk": "^4.0.3", "@types/lodash": "^4.14.202", "@types/node": "^20.9.1", "@types/nunjucks": "^3.2.6", + "@types/proxy": "^1.0.4", "@types/tar": "^6.1.10", + "@types/tar-js": "^0.3.5", "@typescript-eslint/eslint-plugin": "^6.11.0", "@typescript-eslint/parser": "^6.11.0", "ava": "^6.0.1", @@ -95,12 +110,17 @@ "eslint": "^8.53.0", "eslint-config-prettier": "^9.0.0", "eslint-plugin-prettier": "^5.0.1", + "get-port": "^7.0.0", + "http-mitm-proxy": "^1.1.0", + "make-synchronous": "^1.0.0", + "mockdate": "^3.0.5", "nock": "^13.4.0", - "nock-puppeteer": "^14.4.1", "nodemon": "^3.0.2", "openapi-typescript-codegen": "^0.25.0", + "parse-multipart-data": "^1.5.0", "prettier": "^3.1.0", "puppeteer": "^21.7.0", + "rollup": "^4.9.5", "tsup": "^7.3.0", "tsx": "^4.7.0", "type-fest": "^4.8.2", diff --git a/patches/http-mitm-proxy+1.1.0.patch b/patches/http-mitm-proxy+1.1.0.patch new file mode 100644 index 0000000..1928b08 --- /dev/null +++ b/patches/http-mitm-proxy+1.1.0.patch @@ -0,0 +1,13 @@ +diff --git a/node_modules/http-mitm-proxy/dist/lib/proxy.js b/node_modules/http-mitm-proxy/dist/lib/proxy.js +index e896595..8623f9f 100644 +--- a/node_modules/http-mitm-proxy/dist/lib/proxy.js ++++ b/node_modules/http-mitm-proxy/dist/lib/proxy.js +@@ -361,7 +361,7 @@ class Proxy { + function makeConnection(port) { + const conn = net_1.default.connect({ + port, +- host: "0.0.0.0", ++ host: "localhost", + allowHalfOpen: true, + }, () => { + const connectKey = `${conn.localPort}:${conn.remotePort}`; diff --git a/src/cli/config.ts b/src/cli/config.ts index c6f7342..8d24a96 100644 --- a/src/cli/config.ts +++ b/src/cli/config.ts @@ -1,108 +1,7 @@ -import fs from "fs"; -import path from "path"; - import { Command } from "@commander-js/extra-typings"; -import envPaths from "env-paths"; -import { cloneDeep, merge } from "lodash"; -import { z } from "zod"; - -import { logger, print } from "cli/logging"; -import { OpenAPI } from "lib/api"; - -const paths = envPaths("sindri", { - suffix: "", -}); -const configPath = path.join(paths.config, "sindri.conf.json"); - -const ConfigSchema = z.object({ - auth: z - .nullable( - z.object({ - apiKey: z.string(), - apiKeyId: z.string(), - apiKeyName: z.string(), - baseUrl: z.string().url(), - teamId: z.number(), - teamSlug: z.string(), - }), - ) - .default(null), -}); - -type ConfigSchema = z.infer; - -const defaultConfig: ConfigSchema = ConfigSchema.parse({}); - -const loadConfig = (): ConfigSchema => { - if (fs.existsSync(configPath)) { - logger.debug(`Loading config from "${configPath}".`); - try { - const configFileContents: string = fs.readFileSync(configPath, { - encoding: "utf-8", - }); - const loadedConfig = ConfigSchema.parse(JSON.parse(configFileContents)); - logger.debug("Config loaded successfully."); - return loadedConfig; - } catch (error) { - logger.warn( - `The config schema in "${configPath}" is invalid and will not be used.\n` + - `To remove it and start fresh, run:\n rm ${configPath}`, - ); - logger.debug(error); - } - } - logger.debug( - `Config file "${configPath}" does not exist, initializing default config.`, - ); - return cloneDeep(defaultConfig); -}; - -export class Config { - protected _config!: ConfigSchema; - protected static instance: Config; - - constructor() { - if (!Config.instance) { - this._config = loadConfig(); - Config.instance = this; - // Prepare API the client with the loaded credentials. - if (this._config.auth) { - OpenAPI.BASE = this._config.auth.baseUrl; - OpenAPI.TOKEN = this._config.auth.apiKey; - } - } - return Config.instance; - } - - get auth(): ConfigSchema["auth"] { - return cloneDeep(this._config.auth); - } - - get config(): ConfigSchema { - return cloneDeep(this._config); - } - - update(configData: Partial) { - // Merge and validate the configs. - logger.debug("Merging in config update:"); - logger.debug(configData); - const newConfig: ConfigSchema = cloneDeep(this._config); - merge(newConfig, configData); - this._config = ConfigSchema.parse(newConfig); - - // Create the directory if it doesn't exist. - const directory = path.dirname(configPath); - if (!fs.existsSync(directory)) { - fs.mkdirSync(directory, { recursive: true }); - } - // Write out the new config. - logger.debug(`Writing merged config to "${configPath}":`, this._config); - fs.writeFileSync(configPath, JSON.stringify(this._config, null, 2), { - encoding: "utf-8", - }); - } -} +import { Config } from "lib/config"; +import { print } from "lib/logging"; export const configListCommand = new Command() .name("list") diff --git a/src/cli/deploy.ts b/src/cli/deploy.ts index edecced..83141ff 100644 --- a/src/cli/deploy.ts +++ b/src/cli/deploy.ts @@ -1,16 +1,17 @@ +import { Blob } from "buffer"; import { existsSync, readFileSync } from "fs"; import path from "path"; import process from "process"; import { Command } from "@commander-js/extra-typings"; -import FormData from "form-data"; +import { FormData } from "formdata-node"; import walk from "ignore-walk"; import tar from "tar"; -import { Config } from "cli/config"; -import { logger } from "cli/logging"; import { findFileUpwards } from "cli/utils"; import { ApiError, CircuitsService, CircuitStatus } from "lib/api"; +import { Config } from "lib/config"; +import { logger } from "lib/logging"; export const deployCommand = new Command() .name("deploy") @@ -103,7 +104,7 @@ export const deployCommand = new Command() // Always exclude `.git` subdirectories. !/(^|\/)\.git(\/|$)/.test(file), ); - // Alows include the `sindri.json` file. + // Always include the `sindri.json` file. const sindriJsonFilename = path.basename(sindriJsonPath); if (!files.includes(sindriJsonFilename)) { files.push(sindriJsonFilename); @@ -115,23 +116,23 @@ export const deployCommand = new Command() ); formData.append( "files", - tar - .c( - { - gzip: true, - onwarn: (code: string, message: string) => { - logger.warn(`While creating tarball: ${code} - ${message}`); + new Blob([ + tar + .c( + { + gzip: true, + onwarn: (code: string, message: string) => { + logger.warn(`While creating tarball: ${code} - ${message}`); + }, + prefix: `${circuitName}/`, + sync: true, }, - prefix: `${circuitName}/`, - sync: true, - }, - files, - ) - // @ts-expect-error - @types/tar doesn't handle the `sync` option correctly. - .read(), - { - filename: tarballFilename, - }, + files, + ) + // @ts-expect-error - @types/tar doesn't handle the `sync` option correctly. + .read(), + ]), + tarballFilename, ); // Attach the tags to the form data. diff --git a/src/cli/index.ts b/src/cli/index.ts index a123d5d..04fdd0d 100644 --- a/src/cli/index.ts +++ b/src/cli/index.ts @@ -3,15 +3,16 @@ import { argv, exit } from "process"; import { Command } from "@commander-js/extra-typings"; -import { Config, configCommand } from "cli/config"; +import { configCommand } from "cli/config"; import { initCommand } from "cli/init"; import { deployCommand } from "cli/deploy"; import { lintCommand } from "cli/lint"; -import { logger } from "cli/logging"; import { loginCommand } from "cli/login"; import { logoutCommand } from "cli/logout"; import { whoamiCommand } from "cli/whoami"; import { loadPackageJson } from "cli/utils"; +import { Config } from "lib/config"; +import { logger } from "lib/logging"; export const program = new Command() .name("sindri") diff --git a/src/cli/init.ts b/src/cli/init.ts index df2dc7b..f8676da 100644 --- a/src/cli/init.ts +++ b/src/cli/init.ts @@ -6,8 +6,8 @@ import process from "process"; import { Command } from "@commander-js/extra-typings"; import { confirm, input, select } from "@inquirer/prompts"; -import { logger } from "cli/logging"; import { scaffoldDirectory } from "cli/utils"; +import { logger } from "lib/logging"; export const initCommand = new Command() .name("init") diff --git a/src/cli/lint.ts b/src/cli/lint.ts index 78ec138..43cbd0d 100644 --- a/src/cli/lint.ts +++ b/src/cli/lint.ts @@ -6,8 +6,8 @@ import { Command } from "@commander-js/extra-typings"; import type { Schema } from "jsonschema"; import { Validator as JsonValidator } from "jsonschema"; -import { logger } from "cli/logging"; import { findFileUpwards, loadSindriManifestJsonSchema } from "cli/utils"; +import { logger } from "lib/logging"; export const lintCommand = new Command() .name("lint") diff --git a/src/cli/logging.ts b/src/cli/logging.ts deleted file mode 100644 index f6f43df..0000000 --- a/src/cli/logging.ts +++ /dev/null @@ -1,14 +0,0 @@ -import pino from "pino"; -import pretty from "pino-pretty"; - -const prettyStream = pretty({ - colorize: true, - destination: 2, - ignore: "hostname,pid", - levelFirst: false, - sync: true, -}); - -export const logger = pino(prettyStream); - -export const print = console.log; diff --git a/src/cli/login.ts b/src/cli/login.ts index f2183ae..15bacb4 100644 --- a/src/cli/login.ts +++ b/src/cli/login.ts @@ -9,8 +9,6 @@ import { select, } from "@inquirer/prompts"; -import { Config } from "cli/config"; -import { logger } from "cli/logging"; import { ApiError, AuthorizationService, @@ -18,6 +16,8 @@ import { OpenAPI, TokenService, } from "lib/api"; +import { Config } from "lib/config"; +import { logger } from "lib/logging"; export const loginCommand = new Command() .name("login") diff --git a/src/cli/logout.ts b/src/cli/logout.ts index 11837fd..59064a3 100644 --- a/src/cli/logout.ts +++ b/src/cli/logout.ts @@ -1,9 +1,9 @@ import { Command } from "@commander-js/extra-typings"; import { confirm } from "@inquirer/prompts"; -import { Config } from "cli/config"; -import { logger } from "cli/logging"; import { AuthorizationService } from "lib/api"; +import { Config } from "lib/config"; +import { logger } from "lib/logging"; export const logoutCommand = new Command() .name("logout") diff --git a/src/cli/utils.ts b/src/cli/utils.ts index edf5b88..1001c20 100644 --- a/src/cli/utils.ts +++ b/src/cli/utils.ts @@ -7,7 +7,7 @@ import type { Schema } from "jsonschema"; import nunjucks from "nunjucks"; import type { PackageJson } from "type-fest"; -import { logger } from "cli/logging"; +import { logger } from "lib/logging"; const currentFilePath = fileURLToPath(import.meta.url); const currentDirectoryPath = path.dirname(currentFilePath); diff --git a/src/cli/whoami.ts b/src/cli/whoami.ts index 2c77212..7aea9fa 100644 --- a/src/cli/whoami.ts +++ b/src/cli/whoami.ts @@ -2,9 +2,9 @@ import process from "process"; import { Command } from "@commander-js/extra-typings"; -import { Config } from "cli/config"; -import { logger, print } from "cli/logging"; import { ApiError, InternalService } from "lib/api"; +import { Config } from "lib/config"; +import { logger, print } from "lib/logging"; export const whoamiCommand = new Command() .name("whoami") diff --git a/src/lib/api/core/request.ts b/src/lib/api/core/request.ts index 8e55cd6..234363e 100644 --- a/src/lib/api/core/request.ts +++ b/src/lib/api/core/request.ts @@ -9,7 +9,7 @@ import type { AxiosResponse, AxiosInstance, } from "axios"; -import FormData from "form-data"; +import { FormData } from "lib/isomorphic"; // DO NOT REMOVE OR CHANGE THIS, MANUAL EDIT!!! import { ApiError } from "./ApiError"; import type { ApiRequestOptions } from "./ApiRequestOptions"; @@ -172,7 +172,10 @@ export const getHeaders = async ( const password = await resolve(options, config.PASSWORD); const additionalHeaders = await resolve(options, config.HEADERS); const formHeaders = - (typeof formData?.getHeaders === "function" && formData?.getHeaders()) || + (formData && + "getHeaders" in formData && + typeof formData?.getHeaders === "function" && + formData?.getHeaders()) || {}; const headers = Object.entries({ diff --git a/src/lib/api/services/CircuitsService.ts b/src/lib/api/services/CircuitsService.ts index b3c023b..4633fab 100644 --- a/src/lib/api/services/CircuitsService.ts +++ b/src/lib/api/services/CircuitsService.ts @@ -2,7 +2,7 @@ /* istanbul ignore file */ /* tslint:disable */ /* eslint-disable */ -import FormData from "form-data"; +import { FormData } from "formdata-node"; import type { CircomCircuitInfoResponse } from "../models/CircomCircuitInfoResponse"; import type { CircuitCreateInput } from "../models/CircuitCreateInput"; diff --git a/src/lib/client.ts b/src/lib/client.ts new file mode 100644 index 0000000..eef9e64 --- /dev/null +++ b/src/lib/client.ts @@ -0,0 +1,599 @@ +import { readFile, stat } from "fs/promises"; +import path from "path"; +import type { Readable } from "stream"; + +import gzip from "gzip-js"; +import walk from "ignore-walk"; +import tar from "tar"; +import Tar from "tar-js"; + +import { + CircuitsService, + CircuitStatus, + CircuitType, + OpenAPI, + ProofsService, +} from "lib/api"; +import type { + CircomCircuitInfoResponse, + Halo2CircuitInfoResponse, + GnarkCircuitInfoResponse, + NoirCircuitInfoResponse, + ProofInfoResponse, +} from "lib/api"; +import { loadConfig } from "lib/config"; +import { logger, LogLevel } from "lib/logging"; +import { File, FormData } from "lib/isomorphic"; +import type { + BrowserFile, + BrowserFormData, + NodeFile, + NodeFormData, +} from "lib/isomorphic"; + +// Re-export types from the API. +export { CircuitStatus, CircuitType }; +export type { + CircomCircuitInfoResponse, + GnarkCircuitInfoResponse, + Halo2CircuitInfoResponse, + NoirCircuitInfoResponse, + ProofInfoResponse, +}; +export type CircuitInfoResponse = + | CircomCircuitInfoResponse + | Halo2CircuitInfoResponse + | GnarkCircuitInfoResponse + | NoirCircuitInfoResponse; + +/** + * The options for authenticating with the API. + */ +export interface AuthOptions { + /** + * The API key to use for authentication. + */ + apiKey?: string; + /** + * The base URL for the API. + */ + baseUrl?: string; +} + +/** + * Represents the primary client for interacting with the Sindri ZKP service API. This class serves + * as the central entry point for the SDK, facilitating various operations such as compiling ZKP + * circuits and generating proofs. + * + * The {@link Client} class encapsulates all the necessary methods and properties required to + * communicate effectively with the Sindri ZKP service, handling tasks like authentication, request + * management, and response processing. + * + * Usage of this class typically involves instantiating it with appropriate authentication options + * and then utilizing its methods to interact with the service. + * + * @example + * // Create an instance of the `Client` class. + * const client = new Client({ apiKey: 'your-api-key' }); + * + * // Use the client to interact with the Sindri ZKP service... + */ +export class Client { + /** + * Represents the polling interval in milliseconds used for querying the status of an endpoint. + * This value determines the frequency at which the SDK polls an endpoint to check for any changes + * in status. + * + * The choice of polling interval is critical for balancing responsiveness against resource + * consumption. A shorter interval leads to more frequent updates, beneficial for + * rapidly-changing statuses, but at the expense of higher network and computational load. In + * contrast, a longer interval reduces resource usage but may delay the detection of status + * changes. + * + * For more complex ZKP circuits, which may take longer to compile, considering a larger polling + * interval could be advantageous. This approach minimizes unnecessary network traffic and + * computational effort while awaiting the completion of these time-intensive operations. + * + * The default value is set to 1000 milliseconds (1 second), offering a general balance. However, + * it can and should be adjusted based on the expected complexity and compilation time of the + * circuits being processed. + */ + public pollingInterval: number = 1000; + + /** + * Constructs a new instance of the {@link Client} class for interacting with the Sindri ZKP + * service. This constructor initializes the client with the necessary authentication options. + * + * The provided `authOptions` parameter allows for specifying authentication credentials and + * configurations required for the client to communicate securely with the service. See + * {@link Client.authorize} for more details about how authentication credentials are sourced. + * + * @param authOptions - The authentication options for the client, including + * credentials like API keys or tokens. Defaults to an empty object if not provided. + * + * @example + * // Instantiating the Client with authentication options + * const client = new Client({ apiKey: 'sindri-...-fskd' }); + * + * @see {@link Client.authorize} for information on retrieving this value. + */ + constructor(authOptions: AuthOptions = {}) { + this.authorize(authOptions); + } + + /** + * Retrieves the current value of the client's API key used for authenticating with the Sindri ZKP + * service. This property is crucial for ensuring secure communication with the API and is + * typically set during client initialization. + * + * If the API key is not set or is in an invalid format (not a string), this getter returns + * `null`. Proper management of the API key is essential for the security and proper functioning + * of the SDK. + * + * @returns The current API key if set and valid, otherwise `null`. + * + * @example + * const currentApiKey = client.apiKey; + * if (currentApiKey) { + * console.log('API Key is set.'); + * } else { + * console.log('API Key is not set or is invalid.'); + * } + */ + get apiKey(): string | null { + if (OpenAPI.TOKEN && typeof OpenAPI.TOKEN !== "string") { + return null; + } + return OpenAPI.TOKEN || null; + } + + /** + * Retrieves the current base URL of the Sindri ZKP service that the client is configured to + * interact with. This URL forms the foundation of all API requests made by the client and is + * typically set during client initialization. Anyone other than employees at Sindri can typically + * ignore this and use the default value of `https://sindri.app`. + * + * @returns The current base URL of the Sindri ZKP service. + * + * @example + * console.log(`Current base URL: ${client.baseUrl}`); + */ + get baseUrl(): string { + return OpenAPI.BASE; + } + + /** Retrieves the current log level of the client. The log level determines the verbosity of logs + * produced by the client which can be crucial for debugging and monitoring the client's + * interactions with the Sindri ZKP service. + * + * @returns The current log level of the client. + * + * @example + * console.log(`Current log level: ${client.logLevel}`); + */ + get logLevel(): LogLevel { + // We don't specify any custom log levels, so we can narrow the type to exclude strings. + return logger.level as LogLevel; + } + + /** + * Sets the client's log level. This level determines the verbosity of logs produced by the + * client, allowing for flexible control over the amount of information logged during operation. + * + * @param level - The new log level to set for the client. + * + * @example + * // Set log level to debug. + * client.logLevel = "debug"; + */ + set logLevel(level: LogLevel) { + logger.level = level; + } + + /** + * Authorizes the client with the Sindri ZKP service using the provided authentication options. + * This method is called automatically after initializing a client, but you may call it again if + * you would like to change the credentials. The logic around how credentials is as follows: + * + * 1. Any explicitly specified options in `authOptions` are always used if provided. + * 2. The `SINDRI_API_KEY` and `SINDRI_BASE_URL` environment variables are checked next. + * 3. The settings in `sindri.conf.json` (produced by running `sindri login` on the command-line) will be checked after that. + * 4. Finally, the default value of `https://sindri.app` will be used for the base URL (this is + * typically what you want unless you're an employee at Sindri). The API key will remain unset and + * you will only be able to make requests that allow anonymous access. + * + * + * @param authOptions - The authentication details required to authorize the client. + * @returns True if authorization is successful, false otherwise. + * + * @example + * const authOptions = { apiKey: 'sindri-...-jskd' }; + * const isAuthorized = client.authorize(authOptions); + * if (isAuthorized) { + * console.log('Client is fully authorized.'); + * } else { + * console.log('Client is not authorized.'); + * } + */ + authorize(authOptions: AuthOptions): boolean { + if (process.env.BROWSER_BUILD) { + OpenAPI.BASE = authOptions.baseUrl || "https://sindri.app"; + OpenAPI.TOKEN = authOptions.apiKey; + } else { + const config = loadConfig(); + OpenAPI.BASE = + authOptions.baseUrl || + process.env.SINDRI_BASE_URL || + config.auth?.baseUrl || + OpenAPI.BASE || + "https://sindri.app"; + OpenAPI.TOKEN = + authOptions.apiKey || process.env.SINDRI_API_KEY || config.auth?.apiKey; + } + return !!(OpenAPI.BASE && OpenAPI.TOKEN); + } + + // }[tags=["latest"]] + + /** + * Asynchronously creates and deploys a new circuit, initiating its compilation process. This + * method is essential for submitting new versions of circuits to the Sindri ZKP service for + * compilation. Upon deployment, it continuously polls the service to track the compilation status + * until the process either completes successfully or fails. + * + * The method accepts two parameters: `project` and `tags`. The `project` parameter can be either + * a string representing the path to the project or an array of files (browser or Node.js file + * objects) constituting the circuit. The `tags` parameter is used to assign tags to the deployed + * circuit, facilitating versioning and identification. By default, the circuit is tagged as + * "latest". + * + * After successful deployment and compilation, the method returns a `CircuitInfoResponse` object, + * which includes details about the compiled circuit, such as its identifier and status. + * + * @param project - In Node.js, this can either be a path to the root + * directory of a Sindri project, the path to a gzipped tarball containing the project, or an + * array of `buffer.File` objects. In a web browser, it can only be an array of `File` objects. + * @param tags - The list of tags, or singular tag if a string is passed, that + * should be associated with the deployed circuit. Defaults to `["latest"]`. Specify an empty + * array to indicate that you don't care about the compilation outputs and just want to see if it + * the circuit will compile. + * @returns A promise which resolves to the details of the deployed circuit. + * + * @example + * // Deploy a circuit with a project identifier and default `latest` tag. + * const circuit = await client.createCircuit("/path/to/circuit-directory/"); + * console.log("Did circuit compilation succeed?", circuit.status); + * + * @example + * // Deploy a circuit with files and custom tags. + * await client.createCircuit([file1, file2], ['v1.0', 'experimental']); + */ + async createCircuit( + project: string | Array, + tags: string | string[] | null = ["latest"], + ): Promise { + const formData = new FormData(); + + // First, validate the tags and them to the form data. + tags = typeof tags === "string" ? [tags] : tags ?? []; + for (const tag of tags) { + if (!/^[-a-zA-Z0-9_]+$/.test(tag)) { + throw new Error( + `"${tag}" is not a valid tag. Tags may only contain alphanumeric characters, ` + + "underscores, and hyphens.", + ); + } + formData.append("tags", tag); + } + if (tags.length === 0) { + formData.append("tags", ""); + } + + // Handle `project` being a file or directory path. + if (typeof project === "string") { + if (process.env.BROWSER_BUILD) { + throw new Error( + "Specifying `project` as a path is not allowed in the browser build.", + ); + } + + let projectStats; + try { + projectStats = await stat(project); + } catch { + throw new Error( + `The "${project}" path does not exist or you do not have permission to access it.`, + ); + } + + // If `project` is a path, then it's a prepackaged tarball. + if (projectStats.isFile()) { + if (!/\.(zip|tar|tar\.gz|tgz)$/i.test(project)) { + throw new Error("Only gzipped tarballs or zip files are supported."); + } + const tarballFilename = path.basename(project); + const tarballContent = await readFile(project); + (formData as NodeFormData).append( + "files", + new File([tarballContent], tarballFilename), + ); + + // If `project` is a directory, then we need to bundle it. + } else if (projectStats.isDirectory()) { + const sindriJsonPath = path.join(project, "sindri.json"); + let sindriJsonContent; + try { + sindriJsonContent = await readFile(sindriJsonPath, { + encoding: "utf-8", + }); + } catch { + throw new Error( + `Expected Sindri manifest file at "${sindriJsonPath}" does not exist.`, + ); + } + let sindriJson; + try { + sindriJson = JSON.parse(sindriJsonContent) as { name: string }; + } catch { + throw new Error( + `Could not parse "${sindriJsonPath}", is it valid JSON?`, + ); + } + const circuitName = sindriJson?.name; + if (!circuitName) { + throw new Error( + `No circuit "name" field was found in "${sindriJsonPath}", the manifest is invalid.`, + ); + } + + // Create a tarball with all the files that should be included from the project. + const files = walk + .sync({ + follow: true, + ignoreFiles: [".sindriignore"], + path: project, + }) + .filter( + (file) => + // Always exclude `.git` subdirectories. + !/(^|\/)\.git(\/|$)/.test(file), + ); + // Always include the `sindri.json` file. + const sindriJsonFilename = path.basename(sindriJsonPath); + if (!files.includes(sindriJsonFilename)) { + files.push(sindriJsonFilename); + } + const tarballFilename = `${circuitName}.tar.gz`; + files.sort((a, b) => a.localeCompare(b)); // Deterministic for tests. + const tarStream = tar.c( + { + cwd: project, + gzip: true, + onwarn: (code: string, message: string) => { + logger.warn(`While creating tarball: ${code} - ${message}`); + }, + prefix: `${circuitName}/`, + sync: true, + }, + files, + // This works around a bug in the typing of `tar` when using `sync`. + ) as unknown as Readable; + + // Add the tarball to the form data. + (formData as NodeFormData).append( + "files", + new File([tarStream.read()], tarballFilename), + ); + } else { + throw new Error(`The "${project}" path is not a file or directory.`); + } + + // Handle an array of files. + } else if (Array.isArray(project)) { + // Validate the file array. + if (!project.every((file) => file instanceof File)) { + throw new Error("All entries in `project` must be `File` instances."); + } + const sindriJsonFile = project.find( + (file) => file.name === "sindri.json", + ); + if (!sindriJsonFile) { + throw new Error( + "The `project` array must include a `sindri.json` file.", + ); + } + let sindriJson; + try { + sindriJson = JSON.parse(await sindriJsonFile.text()) as { + name: string; + }; + } catch { + throw new Error(`Could not parse "sindri.json", is it valid JSON?`); + } + const circuitName = sindriJson?.name; + if (!circuitName) { + throw new Error( + `No circuit "name" field was found in "sindri.json", the manifest is invalid.`, + ); + } + + // Create the gzipped tarball. + const tarball = new Tar(); + project.sort((a, b) => a.name.localeCompare(b.name)); // Deterministic for tests. + for (const file of project) { + const content = new Uint8Array(await file.arrayBuffer()); + await new Promise((resolve) => + tarball.append(`${circuitName}/${file.name}`, content, resolve), + ); + } + const gzippedTarball = new Uint8Array(gzip.zip(tarball.out)); + const tarFile = new File([gzippedTarball], `${circuitName}.tar.gz`); + + // Append the tarball to the form data. + // These lines are functionally identical, but we want to typecheck node and browser. + if (process.env.BROWSER_BUILD) { + (formData as BrowserFormData).append("files", tarFile as BrowserFile); + } else { + (formData as NodeFormData).append("files", tarFile as NodeFile); + } + } + + // We need to shuffle in a hard-coded form boundary for tests to be deterministic. + // Note that it's import the boundary matches the Chrome format because the test runner checks + // payloads for this format in order to compare non-deterministic gzips. + // TODO: These header changes are global, we need to make them local to this request. + const oldHeaders = OpenAPI.HEADERS; + OpenAPI.HEADERS = { + "Content-Type": + "multipart/form-data; boundary=----WebKitFormBoundary0buQ8d6EhWcs9X9d", + }; + const createResponsePromise = CircuitsService.circuitCreate( + formData as NodeFormData, + ); + const createResponse = await createResponsePromise; + OpenAPI.HEADERS = oldHeaders; + const circuitId = createResponse.circuit_id; + + let response: CircuitInfoResponse; + while (true) { + response = await CircuitsService.circuitDetail(circuitId, false); + if ( + response.status === CircuitStatus.READY || + response.status === CircuitStatus.FAILED + ) { + break; + } + + await new Promise((resolve) => setTimeout(resolve, this.pollingInterval)); + } + return response; + } + + /** + * Retrieves all proofs associated with a specified circuit. This method is essential for + * obtaining a comprehensive list of proofs generated for a given circuit, identified by its + * unique circuit ID. It returns an array of `ProofInfoResponse` objects, each representing a + * proof associated with the circuit. + * + * The method is particularly useful in scenarios where tracking or auditing all proofs of a + * circuit is necessary. This could include verifying the integrity of proofs, understanding their + * usage, or simply enumerating them for record-keeping. + * + * The `circuitId` parameter is a string that uniquely identifies the circuit in question. It's + * crucial to provide the correct circuit ID to retrieve the corresponding proofs accurately. + * + * @param circuitId - The unique identifier of the circuit for which proofs are to be retrieved. + * @returns A promise that resolves to an array of details for each associated proof. + * + * @example + * const proofs = await client.getAllCircuitProofs(circuitId); + * console.log("Proofs:', proofs); + */ + async getAllCircuitProofs(circuitId: string): Promise { + return await CircuitsService.circuitProofs(circuitId); + } + + /** + * Retrieves all circuits associated with the team. This method fetches a list of all circuits + * that have been created or accessed by the currently authenticated team. It's a key method for + * managing and monitoring circuit usage within a team, offering insights into the variety and + * scope of circuits in use. + * + * @returns A promise that resolves to an array of circuit information responses. + * + * @example + * const circuits = await = client.getAllCircuits(); + * console.log("Circuits:", circuits); + */ + async getAllCircuits(): Promise { + return await CircuitsService.circuitList(); + } + + /** + * Retrieves all proofs associated with the team. This method is designed to fetch a list of all + * proofs generated by the current team across all circuits, providing a holistic view of the + * team's activities in proof generation and management. + * + * Utilizing this method helps in gaining insights into the proofs created, their status, and + * other relevant details, which is essential for effective team-wide proof tracking and auditing. + * It returns a promise that resolves to an array of {@link ProofInfoResponse} objects, where each + * object encapsulates detailed information about a specific proof. + * + * @returns A promise that resolves to an array of proofs. + * + * @example + * const proofs = await clientgetAllProofs() + * console.log("How many proofs?", proofs.length); + */ + async getAllProofs(): Promise { + return await ProofsService.proofList(); + } + + /** + * Retrieves a specific circuit using its unique circuit ID. This method is crucial for obtaining + * detailed information about a particular circuit, identified by the provided `circuitId`. It's + * especially useful when detailed insights or operations on a single circuit are required, rather + * than handling multiple circuits. + * + * *Note:* In case the provided `circuitId` is invalid or does not correspond to an existing circuit, + * the promise may reject, indicating an error. Proper error handling is therefore essential when using this method. + * + * @param circuitId - The unique identifier of the circuit to retrieve. + * @returns A promise that resolves to the information about the specified circuit. + * + * @example + * const circuit = await client.getCircuit(circuitId); + * console.log('Circuit details:', circuit); + */ + async getCircuit(circuitId: string): Promise { + return await CircuitsService.circuitDetail(circuitId); + } + + /** + * Retrieves detailed information about a specific proof, identified by its unique proof ID. This + * method is vital for obtaining individual proof details, facilitating in-depth analysis or + * verification of a particular proof within the system. + * + * The `proofId` parameter is the key identifier for the proof, and it should be provided to fetch + * the corresponding information. The method returns a promise that resolves to a + * {@link ProofInfoResponse}, containing all relevant details of the proof. + * + * @param proofId - The unique identifier of the proof to retrieve. + * @returns A promise that resolves to the data about the specified proof. + * + * @example + * const proof = await client.getProof(proofId); + * console.log("Proof details:", proof); + */ + async getProof(proofId: string): Promise { + return await ProofsService.proofDetail(proofId); + } + + /** + * Generates a proof for a specified circuit. This method is critical for creating a new proof + * based on a given circuit, identified by `circuitId`, and the provided `proofInput`. It's + * primarily used to validate or verify certain conditions or properties of the circuit without + * revealing underlying data or specifics. + * + * The `circuitId` parameter specifies the unique identifier of the circuit for which the proof is + * to be generated. The `proofInput` is a string that represents the necessary input data or + * parameters required for generating the proof. + * + * @param circuitId - The unique identifier of the circuit for which the proof is being generated. + * @param proofInput - The input data required for generating the proof. This should be a string + * containing either JSON data or TOML data (in the case of Noir). + * @returns A promise that resolves to the information of the generated proof. + * + * @example + * const proof = await client.proveCircuit(circuitId, '{"X": 23, "Y": 52}'); + * console.log("Generated proof:", proof); + */ + async proveCircuit( + circuitId: string, + proofInput: string, + ): Promise { + return await CircuitsService.proofCreate(circuitId, { + proof_input: proofInput, + }); + } +} diff --git a/src/lib/config.ts b/src/lib/config.ts new file mode 100644 index 0000000..fb0d44d --- /dev/null +++ b/src/lib/config.ts @@ -0,0 +1,108 @@ +import fs from "fs"; +import path from "path"; + +import envPaths from "env-paths"; +import { cloneDeep, merge } from "lodash"; +import { z } from "zod"; + +import { OpenAPI } from "lib/api"; +import { logger } from "lib/logging"; + +const getConfigPath = (): string => { + const paths = envPaths("sindri", { + suffix: "", + }); + return path.join(paths.config, "sindri.conf.json"); +}; + +const ConfigSchema = z.object({ + auth: z + .nullable( + z.object({ + apiKey: z.string(), + apiKeyId: z.string(), + apiKeyName: z.string(), + baseUrl: z.string().url(), + teamId: z.number(), + teamSlug: z.string(), + }), + ) + .default(null), +}); + +type ConfigSchema = z.infer; + +const defaultConfig: ConfigSchema = ConfigSchema.parse({}); + +export const loadConfig = (): ConfigSchema => { + const configPath = getConfigPath(); + if (fs.existsSync(configPath)) { + logger.debug(`Loading config from "${configPath}".`); + try { + const configFileContents: string = fs.readFileSync(configPath, { + encoding: "utf-8", + }); + const loadedConfig = ConfigSchema.parse(JSON.parse(configFileContents)); + logger.debug("Config loaded successfully."); + return loadedConfig; + } catch (error) { + logger.warn( + `The config schema in "${configPath}" is invalid and will not be used.\n` + + `To remove it and start fresh, run:\n rm ${configPath}`, + ); + logger.debug(error); + } + } + logger.debug( + `Config file "${configPath}" does not exist, initializing default config.`, + ); + return cloneDeep(defaultConfig); +}; + +export class Config { + protected _config!: ConfigSchema; + protected static instance: Config; + + constructor() { + if (!Config.instance) { + this._config = loadConfig(); + Config.instance = this; + // Prepare API the client with the loaded credentials. + if (this._config.auth) { + OpenAPI.BASE = this._config.auth.baseUrl; + OpenAPI.TOKEN = this._config.auth.apiKey; + } + } + return Config.instance; + } + + get auth(): ConfigSchema["auth"] { + return cloneDeep(this._config.auth); + } + + get config(): ConfigSchema { + return cloneDeep(this._config); + } + + update(configData: Partial) { + // Merge and validate the configs. + logger.debug("Merging in config update:"); + logger.debug(configData); + const newConfig: ConfigSchema = cloneDeep(this._config); + merge(newConfig, configData); + this._config = ConfigSchema.parse(newConfig); + + // Create the directory if it doesn't exist. + const configPath = getConfigPath(); + const directory = path.dirname(configPath); + if (!fs.existsSync(directory)) { + fs.mkdirSync(directory, { recursive: true }); + } + + // Write out the new config. + logger.debug(`Writing merged config to "${configPath}":`, this._config); + fs.writeFileSync(configPath, JSON.stringify(this._config, null, 2), { + encoding: "utf-8", + }); + } +} diff --git a/src/lib/index.ts b/src/lib/index.ts index 3df00dc..bc31460 100644 --- a/src/lib/index.ts +++ b/src/lib/index.ts @@ -1,7 +1,6 @@ -import { InternalService } from "lib/api"; +import { Client } from "./client"; -export default { - environment: process.env.NODE_ENV, - getSindriManifestSchema: async () => - await InternalService.sindriManifestSchema(), -}; +export default new Client(); + +export * from "./client"; +export type { LogLevel } from "./logging"; diff --git a/src/lib/isomorphic.ts b/src/lib/isomorphic.ts new file mode 100644 index 0000000..f5d57fc --- /dev/null +++ b/src/lib/isomorphic.ts @@ -0,0 +1,19 @@ +import { File as NodeFile } from "buffer"; + +import { FormData as NodeFormData } from "formdata-node"; + +export function assertType(value: unknown) { + function isType(value: unknown): value is T { + return true || value; + } + if (!isType(value)) throw new Error("Impossible."); +} + +export type { NodeFile, NodeFormData }; +export type BrowserFile = File; +export type BrowserFormData = FormData; + +export const File = process.env.BROWSER_BUILD ? window.File : NodeFile; +export const FormData = process.env.BROWSER_BUILD + ? window.FormData + : NodeFormData; diff --git a/src/lib/logging.ts b/src/lib/logging.ts new file mode 100644 index 0000000..1e383db --- /dev/null +++ b/src/lib/logging.ts @@ -0,0 +1,32 @@ +import pino from "pino"; +import pretty from "pino-pretty"; + +/** + * The minimum log level to print. + */ +export type LogLevel = + | "silent" + | "fatal" + | "error" + | "warn" + | "info" + | "debug" + | "trace"; + +export const logger = pino( + process.env.BROWSER_BUILD + ? { + browser: { asObject: true }, + } + : pretty({ + colorize: true, + destination: 2, + ignore: "hostname,pid", + levelFirst: false, + sync: true, + }), +); + +logger.level = process.env.NODE_ENV === "production" ? "silent" : "info"; + +export const print = console.log; diff --git a/test/browser.test.ts b/test/browser.test.ts index b684a18..dcbe293 100644 --- a/test/browser.test.ts +++ b/test/browser.test.ts @@ -1,32 +1,192 @@ -import { test, usePage } from "test/utils/usePage"; +import fs from "fs/promises"; +import path from "path"; + +import mockDateLibrary from "mockdate"; import sindriLibrary from "lib"; +import { test, usePage } from "test/utils/usePage"; +import { dataDirectory } from "test/utils"; // The `sindri` library is injected in `withPage.ts`, but this tells TypeScript what the type is. type SindriLibrary = typeof sindriLibrary; declare const sindri: SindriLibrary; -usePage(); +// The `mockdate` library is injected in `withPage.ts`, but this tells TypeScript what the type is. +type MockDateLibrary = typeof mockDateLibrary; +declare const MockDate: MockDateLibrary; -test("fetch Sindri manifest schema JSON", async (t) => { - const schema = await t.context.page.evaluate(async () => - sindri.getSindriManifestSchema(), - ); - t.true(schema?.title?.includes("Sindri")); +usePage({ + // We need to lock the date because it's used as the modified time of tarballs. + mockDate: () => MockDate.set("2024-01-01T00:00:00.000Z"), }); -test("fetch Sindri manifest schema JSON in a second tab", async (t) => { - const schema = await t.context.page.evaluate(async () => - sindri.getSindriManifestSchema(), +test("library is injected and authorized", async (t) => { + const { apiKey, baseUrl } = await t.context.page.evaluate(() => ({ + apiKey: sindri.apiKey, + baseUrl: sindri.baseUrl, + })); + t.deepEqual(apiKey, sindriLibrary.apiKey); + t.truthy(baseUrl); +}); + +test("create circuit from file array", async (t) => { + const circuitDirectory = path.join(dataDirectory, "circom-multiplier2"); + const fileNames = await fs.readdir(circuitDirectory); + const fileData = await Promise.all( + fileNames.map(async (fileName) => ({ + content: await fs.readFile( + path.join(circuitDirectory, fileName), + "utf-8", + ), + fileName, + })), ); - t.true(schema?.title?.includes("Sindri")); + + await t.context.page.evaluate(async (fileData) => { + const files = fileData.map( + ({ content, fileName }) => new File([content], fileName), + ); + await sindri.createCircuit(files, ["from-browser-file-array"]); + }, fileData); + + t.true(true); }); test("fetch robots.txt", async (t) => { - try { - await t.context.page.goto("https://sindri.app/robots.txt", { timeout: 5 }); - } catch (error) { - /* ignore timeouts */ - } - t.true(true); + const content = await t.context.page.evaluate(async () => { + const response = await fetch("https://sindri.app/robots.txt"); + return await response.text(); + }); + t.true(content?.includes("sitemap")); +}); + +test("get all circuit proofs", async (t) => { + // Compile a circuit. + const circuitDirectory = path.join(dataDirectory, "circom-multiplier2"); + const fileNames = await fs.readdir(circuitDirectory); + const fileData = await Promise.all( + fileNames.map(async (fileName) => ({ + content: await fs.readFile( + path.join(circuitDirectory, fileName), + "utf-8", + ), + fileName, + })), + ); + const circuit = await t.context.page.evaluate(async (fileData) => { + const files = fileData.map( + ({ content, fileName }) => new File([content], fileName), + ); + return await sindri.createCircuit(files, [ + "from-browser-file-array-for-get-all-circuit-proofs", + ]); + }, fileData); + + // Create a proof. + const proof = await t.context.page.evaluate(async (circuit) => { + return await sindri.proveCircuit(circuit.circuit_id, '{"a":"5","b":"4"}'); + }, circuit); + t.truthy(proof?.proof_id); + + // Get all circuit proofs. + const proofs = await t.context.page.evaluate(async (circuit) => { + return await sindri.getAllCircuitProofs(circuit.circuit_id); + }, circuit); + t.truthy(proofs); + t.deepEqual(proofs.length, 1); + t.deepEqual(proofs[0]?.circuit_id, circuit?.circuit_id); + t.truthy(proofs[0]?.circuit_id); +}); + +test("get all circuits", async (t) => { + const circuits = await t.context.page.evaluate(async () => + sindri.getAllCircuits(), + ); + t.true(Array.isArray(circuits)); + t.true(circuits.length > 0); + t.truthy(circuits[0]?.circuit_id); +}); + +test("get all proofs", async (t) => { + const proofs = await t.context.page.evaluate(async () => + sindri.getAllProofs(), + ); + t.true(Array.isArray(proofs)); + t.true(proofs.length > 0); + t.truthy(proofs[0]?.proof_id); +}); + +test("get proof", async (t) => { + const proofs = await t.context.page.evaluate(async () => + sindri.getAllProofs(), + ); + t.true(Array.isArray(proofs)); + t.true(proofs.length > 0); + const proof = proofs[0]; + + const retrievedProof = await t.context.page.evaluate( + async (proofId) => sindri.getProof(proofId), + proof!.proof_id, + ); + t.truthy(retrievedProof?.proof_id); + t.deepEqual(proof?.proof_id, retrievedProof.proof_id); +}); + +test("get circuit", async (t) => { + // Compile a circuit. + const circuitDirectory = path.join(dataDirectory, "circom-multiplier2"); + const fileNames = await fs.readdir(circuitDirectory); + const fileData = await Promise.all( + fileNames.map(async (fileName) => ({ + content: await fs.readFile( + path.join(circuitDirectory, fileName), + "utf-8", + ), + fileName, + })), + ); + const circuit = await t.context.page.evaluate(async (fileData) => { + const files = fileData.map( + ({ content, fileName }) => new File([content], fileName), + ); + return await sindri.createCircuit(files, [ + "from-browser-file-array-for-get-circuit", + ]); + }, fileData); + + // Get the circuit. + const retrievedCircuit = await t.context.page.evaluate(async (circuitId) => { + return await sindri.getCircuit(circuitId); + }, circuit.circuit_id); + t.truthy(retrievedCircuit); + t.deepEqual(circuit.circuit_id, retrievedCircuit.circuit_id); +}); + +test("prove circuit", async (t) => { + // Compile a circuit. + const circuitDirectory = path.join(dataDirectory, "circom-multiplier2"); + const fileNames = await fs.readdir(circuitDirectory); + const fileData = await Promise.all( + fileNames.map(async (fileName) => ({ + content: await fs.readFile( + path.join(circuitDirectory, fileName), + "utf-8", + ), + fileName, + })), + ); + const circuit = await t.context.page.evaluate(async (fileData) => { + const files = fileData.map( + ({ content, fileName }) => new File([content], fileName), + ); + return await sindri.createCircuit(files, [ + "from-browser-file-array-for-prove-circuit", + ]); + }, fileData); + + // Create a proof. + const proof = await t.context.page.evaluate(async (circuit) => { + return await sindri.proveCircuit(circuit.circuit_id, '{"a":"5","b":"4"}'); + }, circuit); + t.truthy(proof?.proof_id); }); diff --git a/test/data/circom-multiplier2.tgz b/test/data/circom-multiplier2.tgz new file mode 100644 index 0000000..325d18d Binary files /dev/null and b/test/data/circom-multiplier2.tgz differ diff --git a/test/data/circom-multiplier2/circuit.circom b/test/data/circom-multiplier2/circuit.circom new file mode 100644 index 0000000..56bbd93 --- /dev/null +++ b/test/data/circom-multiplier2/circuit.circom @@ -0,0 +1,21 @@ +pragma circom 2.0.0; + +/* +This circuit template checks that c is the multiplication of a and b. +Source (March 12, 2023): +https://docs.circom.io/getting-started/writing-circuits/ +https://docs.circom.io/getting-started/compiling-circuits/ +*/ + +template Multiplier2 () { + + // Declaration of signals. + signal input a; + signal input b; + signal output c; + + // Constraints. + c <== a * b; +} + +component main = Multiplier2(); diff --git a/test/data/circom-multiplier2/sindri.json b/test/data/circom-multiplier2/sindri.json new file mode 100644 index 0000000..20b148c --- /dev/null +++ b/test/data/circom-multiplier2/sindri.json @@ -0,0 +1,8 @@ +{ + "$schema": "https://sindri.app/api/v1/sindri-manifest-schema.json", + "name": "circom-multiplier2", + "circuitType": "circom", + "curve": "bn254", + "provingScheme": "groth16", + "witnessCompiler": "c++" +} diff --git a/test/fixtures/browser.test.ts.json b/test/fixtures/browser.test.ts.json index c2b1296..1f58f57 100644 --- a/test/fixtures/browser.test.ts.json +++ b/test/fixtures/browser.test.ts.json @@ -1,514 +1,34577 @@ [ { "scope": "https://sindri.app:443", - "method": "get", + "method": "GET", + "path": "/api/v1/proof/list?include_proof_input=false&include_proof=false&include_public=false&include_verification_key=false", + "body": "", + "status": 200, + "response": [ + { + "proof_id": "a0cd0c31-178d-40ab-befd-56240cfac47b", + "circuit_name": "circom-multiplier2", + "circuit_id": "ddd1b9a9-83e6-41d1-8936-3bff88aa6921", + "circuit_type": "circom", + "date_created": "2024-01-15T13:29:36.311Z", + "perform_verify": false, + "status": "Ready", + "compute_time": "P0DT00H00M02.092256S", + "compute_times": { + "prove": 0.36259699426591396, + "total": 2.1656957883387804, + "queued": 5.830407, + "clean_up": 0.0003967471420764923, + "file_setup": 0.6623526718467474, + "save_results": 0.18246298655867577, + "generate_witness_c": 0.9574985150247812 + }, + "file_sizes": { + "proof": 705, + "total": 711, + "public": 6, + "total_gb": 7.11e-7, + "total_mb": 0.000711 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "proof_input": null, + "proof": null, + "prover_implementation": { + "name": "GPU Tachyonic", + "smbc": 6, + "smcurve": "spparkx.alt_bn128", + "smreplicate": false + }, + "public": null, + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nopl nonstop_tsc cpuid extd_apicid aperfmperf rapl pni pclmulqdq monitor ssse3 fma cx16 pcid sse4_1 sse4_2 movbe popcnt aes xsave avx f16c rdrand lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt tce topoext perfctr_core perfctr_nb bpext perfctr_llc mwaitx cpb cat_l3 cdp_l3 invpcid_single hw_pstate ssbd mba ibrs ibpb stibp vmmcall fsgsbase bmi1 avx2 smep bmi2 invpcid cqm rdt_a rdseed adx smap clflushopt clwb sha_ni xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local clzero irperf xsaveerptr rdpru wbnoinvd amd_ppin brs arat npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold v_vmsave_vmload vgif v_spec_ctrl umip pku ospke vaes vpclmulqdq rdpid overflow_recov succor smca", + "Model:": "1", + "CPU(s):": "128", + "BogoMIPS:": "5190.16", + "L2 cache:": "32 MiB (64 instances)", + "L3 cache:": "256 MiB (8 instances)", + "Stepping:": "1", + "L1d cache:": "2 MiB (64 instances)", + "L1i cache:": "2 MiB (64 instances)", + "Socket(s):": "2", + "Vendor ID:": "AuthenticAMD", + "Byte Order:": "Little Endian", + "CPU family:": "25", + "Model name:": "AMD EPYC 7513 32-Core Processor", + "CPU max MHz:": "3681.6399", + "CPU min MHz:": "1500.0000", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "48 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "AMD-V", + "Frequency boost:": "enabled", + "NUMA node0 CPU(s):": "0-31,64-95", + "NUMA node1 CPU(s):": "32-63,96-127", + "Vulnerability Mds:": "Not affected", + "Core(s) per socket:": "32", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Not affected", + "On-line CPU(s) list:": "0,2-4,6-31,35-64,66-68,70-95,99-127", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "1,5,32-34,65,69,96-98", + "Vulnerability Meltdown:": "Not affected", + "Vulnerability Retbleed:": "Not affected", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; Retpolines, IBPB conditional, IBRS_FW, STIBP always-on, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "Not affected", + "Vulnerability Mmio stale data:": "Not affected", + "Vulnerability Tsx async abort:": "Not affected", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [ + { + "id": 0, + "name": "NVIDIA RTX A6000", + "uuid": "GPU-bfa26f0f-c563-4d7b-2157-ca283ea42f01", + "driver": "525.125.06", + "serial": "1325121022674", + "memory_total_MiB": 49140 + } + ], + "num_gpus": 1 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null + }, + { + "proof_id": "7a40011c-8526-4c26-a0ac-d9666885eaf0", + "circuit_name": "circom-multiplier2", + "circuit_id": "96444cdd-027c-4c3f-a682-4e72d16bf3a5", + "circuit_type": "circom", + "date_created": "2024-01-15T13:29:34.880Z", + "perform_verify": false, + "status": "Ready", + "compute_time": "P0DT00H00M03.002676S", + "compute_times": { + "prove": 0.40854700468480587, + "total": 3.068965345621109, + "queued": 2.266619, + "clean_up": 0.00030806101858615875, + "file_setup": 0.7846233639866114, + "save_results": 0.18261023424565792, + "generate_witness_c": 1.6924956049770117 + }, + "file_sizes": { + "proof": 706, + "total": 712, + "public": 6, + "total_gb": 7.12e-7, + "total_mb": 0.000712 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "proof_input": null, + "proof": null, + "prover_implementation": { + "name": "GPU Tachyonic", + "smbc": 6, + "smcurve": "spparkx.alt_bn128", + "smreplicate": false + }, + "public": null, + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nopl nonstop_tsc cpuid extd_apicid aperfmperf rapl pni pclmulqdq monitor ssse3 fma cx16 pcid sse4_1 sse4_2 movbe popcnt aes xsave avx f16c rdrand lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt tce topoext perfctr_core perfctr_nb bpext perfctr_llc mwaitx cpb cat_l3 cdp_l3 invpcid_single hw_pstate ssbd mba ibrs ibpb stibp vmmcall fsgsbase bmi1 avx2 smep bmi2 invpcid cqm rdt_a rdseed adx smap clflushopt clwb sha_ni xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local clzero irperf xsaveerptr rdpru wbnoinvd amd_ppin brs arat npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold v_vmsave_vmload vgif v_spec_ctrl umip pku ospke vaes vpclmulqdq rdpid overflow_recov succor smca", + "Model:": "1", + "CPU(s):": "128", + "BogoMIPS:": "5190.16", + "L2 cache:": "32 MiB (64 instances)", + "L3 cache:": "256 MiB (8 instances)", + "Stepping:": "1", + "L1d cache:": "2 MiB (64 instances)", + "L1i cache:": "2 MiB (64 instances)", + "Socket(s):": "2", + "Vendor ID:": "AuthenticAMD", + "Byte Order:": "Little Endian", + "CPU family:": "25", + "Model name:": "AMD EPYC 7513 32-Core Processor", + "CPU max MHz:": "3681.6399", + "CPU min MHz:": "1500.0000", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "48 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "AMD-V", + "Frequency boost:": "enabled", + "NUMA node0 CPU(s):": "0-31,64-95", + "NUMA node1 CPU(s):": "32-63,96-127", + "Vulnerability Mds:": "Not affected", + "Core(s) per socket:": "32", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Not affected", + "On-line CPU(s) list:": "0,2-4,6-31,35-64,66-68,70-95,99-127", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "1,5,32-34,65,69,96-98", + "Vulnerability Meltdown:": "Not affected", + "Vulnerability Retbleed:": "Not affected", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; Retpolines, IBPB conditional, IBRS_FW, STIBP always-on, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "Not affected", + "Vulnerability Mmio stale data:": "Not affected", + "Vulnerability Tsx async abort:": "Not affected", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [ + { + "id": 0, + "name": "NVIDIA RTX A6000", + "uuid": "GPU-bfa26f0f-c563-4d7b-2157-ca283ea42f01", + "driver": "525.125.06", + "serial": "1325121022674", + "memory_total_MiB": 49140 + } + ], + "num_gpus": 1 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null + }, + { + "proof_id": "c3ba6384-7192-4ae6-8b0e-98ce27631011", + "circuit_name": "circom-multiplier2", + "circuit_id": "7ef187a6-8c98-453b-8a71-a9eaaecc0e34", + "circuit_type": "circom", + "date_created": "2024-01-15T13:29:30.819Z", + "perform_verify": false, + "status": "Ready", + "compute_time": "P0DT00H00M03.202003S", + "compute_times": { + "prove": 0.46431767754256725, + "total": 3.2886892426759005, + "queued": 1.201985, + "clean_up": 0.0002929028123617172, + "file_setup": 0.8507254235446453, + "save_results": 0.18203313648700714, + "generate_witness_c": 1.7910168208181858 + }, + "file_sizes": { + "proof": 709, + "total": 715, + "public": 6, + "total_gb": 7.15e-7, + "total_mb": 0.000715 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "proof_input": null, + "proof": null, + "prover_implementation": { + "name": "GPU Tachyonic", + "smbc": 6, + "smcurve": "spparkx.alt_bn128", + "smreplicate": false + }, + "public": null, + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nopl nonstop_tsc cpuid extd_apicid aperfmperf rapl pni pclmulqdq monitor ssse3 fma cx16 pcid sse4_1 sse4_2 movbe popcnt aes xsave avx f16c rdrand lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt tce topoext perfctr_core perfctr_nb bpext perfctr_llc mwaitx cpb cat_l3 cdp_l3 invpcid_single hw_pstate ssbd mba ibrs ibpb stibp vmmcall fsgsbase bmi1 avx2 smep bmi2 invpcid cqm rdt_a rdseed adx smap clflushopt clwb sha_ni xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local clzero irperf xsaveerptr rdpru wbnoinvd amd_ppin brs arat npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold v_vmsave_vmload vgif v_spec_ctrl umip pku ospke vaes vpclmulqdq rdpid overflow_recov succor smca", + "Model:": "1", + "CPU(s):": "128", + "BogoMIPS:": "5190.16", + "L2 cache:": "32 MiB (64 instances)", + "L3 cache:": "256 MiB (8 instances)", + "Stepping:": "1", + "L1d cache:": "2 MiB (64 instances)", + "L1i cache:": "2 MiB (64 instances)", + "Socket(s):": "2", + "Vendor ID:": "AuthenticAMD", + "Byte Order:": "Little Endian", + "CPU family:": "25", + "Model name:": "AMD EPYC 7513 32-Core Processor", + "CPU max MHz:": "3681.6399", + "CPU min MHz:": "1500.0000", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "48 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "AMD-V", + "Frequency boost:": "enabled", + "NUMA node0 CPU(s):": "0-31,64-95", + "NUMA node1 CPU(s):": "32-63,96-127", + "Vulnerability Mds:": "Not affected", + "Core(s) per socket:": "32", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Not affected", + "On-line CPU(s) list:": "0,2-4,6-31,35-64,66-68,70-95,99-127", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "1,5,32-34,65,69,96-98", + "Vulnerability Meltdown:": "Not affected", + "Vulnerability Retbleed:": "Not affected", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; Retpolines, IBPB conditional, IBRS_FW, STIBP always-on, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "Not affected", + "Vulnerability Mmio stale data:": "Not affected", + "Vulnerability Tsx async abort:": "Not affected", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [ + { + "id": 0, + "name": "NVIDIA RTX A6000", + "uuid": "GPU-bfa26f0f-c563-4d7b-2157-ca283ea42f01", + "driver": "525.125.06", + "serial": "1325121022674", + "memory_total_MiB": 49140 + } + ], + "num_gpus": 1 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null + }, + { + "proof_id": "ab24f58c-fd8c-4d6b-afb9-6fe8bc786b4a", + "circuit_name": "circom-multiplier2", + "circuit_id": "24294db3-7afa-418b-bf0d-1243f5886a87", + "circuit_type": "circom", + "date_created": "2024-01-15T13:29:09.850Z", + "perform_verify": false, + "status": "Ready", + "compute_time": "P0DT00H00M03.165555S", + "compute_times": { + "prove": 0.39277893863618374, + "total": 3.2604714408516884, + "queued": 1.166733, + "clean_up": 0.000250350683927536, + "file_setup": 0.9157394412904978, + "save_results": 0.1821883488446474, + "generate_witness_c": 1.7691551242023706 + }, + "file_sizes": { + "proof": 708, + "total": 714, + "public": 6, + "total_gb": 7.14e-7, + "total_mb": 0.000714 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "proof_input": null, + "proof": null, + "prover_implementation": { + "name": "GPU Tachyonic", + "smbc": 6, + "smcurve": "spparkx.alt_bn128", + "smreplicate": false + }, + "public": null, + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nopl nonstop_tsc cpuid extd_apicid aperfmperf rapl pni pclmulqdq monitor ssse3 fma cx16 pcid sse4_1 sse4_2 movbe popcnt aes xsave avx f16c rdrand lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt tce topoext perfctr_core perfctr_nb bpext perfctr_llc mwaitx cpb cat_l3 cdp_l3 invpcid_single hw_pstate ssbd mba ibrs ibpb stibp vmmcall fsgsbase bmi1 avx2 smep bmi2 invpcid cqm rdt_a rdseed adx smap clflushopt clwb sha_ni xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local clzero irperf xsaveerptr rdpru wbnoinvd amd_ppin brs arat npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold v_vmsave_vmload vgif v_spec_ctrl umip pku ospke vaes vpclmulqdq rdpid overflow_recov succor smca", + "Model:": "1", + "CPU(s):": "128", + "BogoMIPS:": "5190.16", + "L2 cache:": "32 MiB (64 instances)", + "L3 cache:": "256 MiB (8 instances)", + "Stepping:": "1", + "L1d cache:": "2 MiB (64 instances)", + "L1i cache:": "2 MiB (64 instances)", + "Socket(s):": "2", + "Vendor ID:": "AuthenticAMD", + "Byte Order:": "Little Endian", + "CPU family:": "25", + "Model name:": "AMD EPYC 7513 32-Core Processor", + "CPU max MHz:": "3681.6399", + "CPU min MHz:": "1500.0000", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "48 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "AMD-V", + "Frequency boost:": "enabled", + "NUMA node0 CPU(s):": "0-31,64-95", + "NUMA node1 CPU(s):": "32-63,96-127", + "Vulnerability Mds:": "Not affected", + "Core(s) per socket:": "32", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Not affected", + "On-line CPU(s) list:": "0,2-4,6-31,35-64,66-68,70-95,99-127", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "1,5,32-34,65,69,96-98", + "Vulnerability Meltdown:": "Not affected", + "Vulnerability Retbleed:": "Not affected", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; Retpolines, IBPB conditional, IBRS_FW, STIBP always-on, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "Not affected", + "Vulnerability Mmio stale data:": "Not affected", + "Vulnerability Tsx async abort:": "Not affected", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [ + { + "id": 0, + "name": "NVIDIA RTX A6000", + "uuid": "GPU-bfa26f0f-c563-4d7b-2157-ca283ea42f01", + "driver": "525.125.06", + "serial": "1325121022674", + "memory_total_MiB": 49140 + } + ], + "num_gpus": 1 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null + }, + { + "proof_id": "3648dc8e-815c-4afa-9a55-d8ef94c94720", + "circuit_name": "circom-multiplier2", + "circuit_id": "dc8d2ea3-558f-464b-88ef-4bfa06fa618e", + "circuit_type": "circom", + "date_created": "2024-01-15T12:58:03.819Z", + "perform_verify": false, + "status": "Ready", + "compute_time": "P0DT00H00M05.952523S", + "compute_times": { + "prove": 5.78664686344564, + "total": 6.02712868899107, + "queued": 19.881766, + "clean_up": 0.000322168692946434, + "file_setup": 0.22792908176779747, + "save_results": 0.0026133283972740173, + "generate_witness_c": 0.009340517222881317 + }, + "file_sizes": { + "proof": 705, + "total": 711, + "public": 6, + "total_gb": 7.11e-7, + "total_mb": 0.000711 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "proof_input": null, + "proof": null, + "prover_implementation": { + "name": "GPU Tachyonic", + "smbc": 6, + "smcurve": "spparkx.alt_bn128", + "smreplicate": false + }, + "public": null, + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nopl nonstop_tsc cpuid extd_apicid aperfmperf rapl pni pclmulqdq monitor ssse3 fma cx16 pcid sse4_1 sse4_2 movbe popcnt aes xsave avx f16c rdrand lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt tce topoext perfctr_core perfctr_nb bpext perfctr_llc mwaitx cpb cat_l3 cdp_l3 invpcid_single hw_pstate ssbd mba ibrs ibpb stibp vmmcall fsgsbase bmi1 avx2 smep bmi2 invpcid cqm rdt_a rdseed adx smap clflushopt clwb sha_ni xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local clzero irperf xsaveerptr rdpru wbnoinvd amd_ppin brs arat npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold v_vmsave_vmload vgif v_spec_ctrl umip pku ospke vaes vpclmulqdq rdpid overflow_recov succor smca", + "Model:": "1", + "CPU(s):": "128", + "BogoMIPS:": "5200.22", + "L2 cache:": "32 MiB (64 instances)", + "L3 cache:": "256 MiB (8 instances)", + "Stepping:": "1", + "L1d cache:": "2 MiB (64 instances)", + "L1i cache:": "2 MiB (64 instances)", + "Socket(s):": "2", + "Vendor ID:": "AuthenticAMD", + "Byte Order:": "Little Endian", + "CPU family:": "25", + "Model name:": "AMD EPYC 7513 32-Core Processor", + "CPU max MHz:": "3681.6399", + "CPU min MHz:": "1500.0000", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "48 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "AMD-V", + "Frequency boost:": "enabled", + "NUMA node0 CPU(s):": "0-31,64-95", + "NUMA node1 CPU(s):": "32-63,96-127", + "Vulnerability Mds:": "Not affected", + "Core(s) per socket:": "32", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Not affected", + "On-line CPU(s) list:": "0,7-31,34-64,71-95,98-127", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "1-6,32,33,65-70,96,97", + "Vulnerability Meltdown:": "Not affected", + "Vulnerability Retbleed:": "Not affected", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; Retpolines, IBPB conditional, IBRS_FW, STIBP always-on, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "Not affected", + "Vulnerability Mmio stale data:": "Not affected", + "Vulnerability Tsx async abort:": "Not affected", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [ + { + "id": 0, + "name": "NVIDIA RTX A5000", + "uuid": "GPU-8123ac87-4c84-a9e9-8b99-054309b65f6c", + "driver": "525.125.06", + "serial": "1323821036088", + "memory_total_MiB": 24564 + } + ], + "num_gpus": 1 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null + }, + { + "proof_id": "0593535e-0857-4dfc-8f4d-2b151e5f7bad", + "circuit_name": "circom-multiplier2", + "circuit_id": "b0811776-3cbb-4f04-91fa-77ff7816010c", + "circuit_type": "circom", + "date_created": "2024-01-15T12:58:00.883Z", + "perform_verify": false, + "status": "Ready", + "compute_time": "P0DT00H00M06.075331S", + "compute_times": { + "prove": 5.884085742756724, + "total": 6.148683849722147, + "queued": 15.626844, + "clean_up": 0.0003361683338880539, + "file_setup": 0.25031704641878605, + "save_results": 0.0027868077158927917, + "generate_witness_c": 0.010888265445828438 + }, + "file_sizes": { + "proof": 709, + "total": 715, + "public": 6, + "total_gb": 7.15e-7, + "total_mb": 0.000715 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "proof_input": null, + "proof": null, + "prover_implementation": { + "name": "GPU Tachyonic", + "smbc": 6, + "smcurve": "spparkx.alt_bn128", + "smreplicate": false + }, + "public": null, + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nopl nonstop_tsc cpuid extd_apicid aperfmperf rapl pni pclmulqdq monitor ssse3 fma cx16 pcid sse4_1 sse4_2 movbe popcnt aes xsave avx f16c rdrand lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt tce topoext perfctr_core perfctr_nb bpext perfctr_llc mwaitx cpb cat_l3 cdp_l3 invpcid_single hw_pstate ssbd mba ibrs ibpb stibp vmmcall fsgsbase bmi1 avx2 smep bmi2 invpcid cqm rdt_a rdseed adx smap clflushopt clwb sha_ni xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local clzero irperf xsaveerptr rdpru wbnoinvd amd_ppin brs arat npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold v_vmsave_vmload vgif v_spec_ctrl umip pku ospke vaes vpclmulqdq rdpid overflow_recov succor smca", + "Model:": "1", + "CPU(s):": "128", + "BogoMIPS:": "5200.22", + "L2 cache:": "32 MiB (64 instances)", + "L3 cache:": "256 MiB (8 instances)", + "Stepping:": "1", + "L1d cache:": "2 MiB (64 instances)", + "L1i cache:": "2 MiB (64 instances)", + "Socket(s):": "2", + "Vendor ID:": "AuthenticAMD", + "Byte Order:": "Little Endian", + "CPU family:": "25", + "Model name:": "AMD EPYC 7513 32-Core Processor", + "CPU max MHz:": "3681.6399", + "CPU min MHz:": "1500.0000", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "48 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "AMD-V", + "Frequency boost:": "enabled", + "NUMA node0 CPU(s):": "0-31,64-95", + "NUMA node1 CPU(s):": "32-63,96-127", + "Vulnerability Mds:": "Not affected", + "Core(s) per socket:": "32", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Not affected", + "On-line CPU(s) list:": "0,5-64,69-127", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "1-4,65-68", + "Vulnerability Meltdown:": "Not affected", + "Vulnerability Retbleed:": "Not affected", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; Retpolines, IBPB conditional, IBRS_FW, STIBP always-on, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "Not affected", + "Vulnerability Mmio stale data:": "Not affected", + "Vulnerability Tsx async abort:": "Not affected", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [ + { + "id": 0, + "name": "NVIDIA RTX A5000", + "uuid": "GPU-8123ac87-4c84-a9e9-8b99-054309b65f6c", + "driver": "525.125.06", + "serial": "1323821036088", + "memory_total_MiB": 24564 + } + ], + "num_gpus": 1 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null + }, + { + "proof_id": "1a60be26-4e51-4ac6-befd-db89c42c6f47", + "circuit_name": "circom-multiplier2", + "circuit_id": "f8e982ba-0f45-445f-8080-31e81ea66636", + "circuit_type": "circom", + "date_created": "2024-01-15T12:57:55.709Z", + "perform_verify": false, + "status": "Ready", + "compute_time": "P0DT00H00M06.347161S", + "compute_times": { + "prove": 6.171584198251367, + "total": 6.416391229256988, + "queued": 13.397523, + "clean_up": 0.00026652775704860687, + "file_setup": 0.23340564966201782, + "save_results": 0.0024722814559936523, + "generate_witness_c": 0.008305234834551811 + }, + "file_sizes": { + "proof": 706, + "total": 712, + "public": 6, + "total_gb": 7.12e-7, + "total_mb": 0.000712 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "proof_input": null, + "proof": null, + "prover_implementation": { + "name": "GPU Tachyonic", + "smbc": 6, + "smcurve": "spparkx.alt_bn128", + "smreplicate": false + }, + "public": null, + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nopl nonstop_tsc cpuid extd_apicid aperfmperf rapl pni pclmulqdq monitor ssse3 fma cx16 pcid sse4_1 sse4_2 movbe popcnt aes xsave avx f16c rdrand lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt tce topoext perfctr_core perfctr_nb bpext perfctr_llc mwaitx cpb cat_l3 cdp_l3 invpcid_single hw_pstate ssbd mba ibrs ibpb stibp vmmcall fsgsbase bmi1 avx2 smep bmi2 invpcid cqm rdt_a rdseed adx smap clflushopt clwb sha_ni xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local clzero irperf xsaveerptr rdpru wbnoinvd amd_ppin brs arat npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold v_vmsave_vmload vgif v_spec_ctrl umip pku ospke vaes vpclmulqdq rdpid overflow_recov succor smca", + "Model:": "1", + "CPU(s):": "128", + "BogoMIPS:": "5200.22", + "L2 cache:": "32 MiB (64 instances)", + "L3 cache:": "256 MiB (8 instances)", + "Stepping:": "1", + "L1d cache:": "2 MiB (64 instances)", + "L1i cache:": "2 MiB (64 instances)", + "Socket(s):": "2", + "Vendor ID:": "AuthenticAMD", + "Byte Order:": "Little Endian", + "CPU family:": "25", + "Model name:": "AMD EPYC 7513 32-Core Processor", + "CPU max MHz:": "3681.6399", + "CPU min MHz:": "1500.0000", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "48 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "AMD-V", + "Frequency boost:": "enabled", + "NUMA node0 CPU(s):": "0-31,64-95", + "NUMA node1 CPU(s):": "32-63,96-127", + "Vulnerability Mds:": "Not affected", + "Core(s) per socket:": "32", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Not affected", + "On-line CPU(s) list:": "0,5-64,69-127", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "1-4,65-68", + "Vulnerability Meltdown:": "Not affected", + "Vulnerability Retbleed:": "Not affected", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; Retpolines, IBPB conditional, IBRS_FW, STIBP always-on, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "Not affected", + "Vulnerability Mmio stale data:": "Not affected", + "Vulnerability Tsx async abort:": "Not affected", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [ + { + "id": 0, + "name": "NVIDIA RTX A5000", + "uuid": "GPU-8123ac87-4c84-a9e9-8b99-054309b65f6c", + "driver": "525.125.06", + "serial": "1323821036088", + "memory_total_MiB": 24564 + } + ], + "num_gpus": 1 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null + }, + { + "proof_id": "e06d8295-f579-452d-aff6-58b1733c3b00", + "circuit_name": "circom-multiplier2", + "circuit_id": "39a7d49d-2aa4-42f5-bad7-41fa853c5400", + "circuit_type": "circom", + "date_created": "2024-01-15T12:57:48.596Z", + "perform_verify": false, + "status": "Ready", + "compute_time": "P0DT00H00M06.389301S", + "compute_times": { + "prove": 6.184801682829857, + "total": 6.4623388685286045, + "queued": 13.056683, + "clean_up": 0.00022029876708984375, + "file_setup": 0.2468203753232956, + "save_results": 0.002211831510066986, + "generate_witness_c": 0.027915021404623985 + }, + "file_sizes": { + "proof": 708, + "total": 714, + "public": 6, + "total_gb": 7.14e-7, + "total_mb": 0.000714 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "proof_input": null, + "proof": null, + "prover_implementation": { + "name": "GPU Tachyonic", + "smbc": 6, + "smcurve": "spparkx.alt_bn128", + "smreplicate": false + }, + "public": null, + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nopl nonstop_tsc cpuid extd_apicid aperfmperf rapl pni pclmulqdq monitor ssse3 fma cx16 pcid sse4_1 sse4_2 movbe popcnt aes xsave avx f16c rdrand lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt tce topoext perfctr_core perfctr_nb bpext perfctr_llc mwaitx cpb cat_l3 cdp_l3 invpcid_single hw_pstate ssbd mba ibrs ibpb stibp vmmcall fsgsbase bmi1 avx2 smep bmi2 invpcid cqm rdt_a rdseed adx smap clflushopt clwb sha_ni xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local clzero irperf xsaveerptr rdpru wbnoinvd amd_ppin brs arat npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold v_vmsave_vmload vgif v_spec_ctrl umip pku ospke vaes vpclmulqdq rdpid overflow_recov succor smca", + "Model:": "1", + "CPU(s):": "128", + "BogoMIPS:": "5200.22", + "L2 cache:": "32 MiB (64 instances)", + "L3 cache:": "256 MiB (8 instances)", + "Stepping:": "1", + "L1d cache:": "2 MiB (64 instances)", + "L1i cache:": "2 MiB (64 instances)", + "Socket(s):": "2", + "Vendor ID:": "AuthenticAMD", + "Byte Order:": "Little Endian", + "CPU family:": "25", + "Model name:": "AMD EPYC 7513 32-Core Processor", + "CPU max MHz:": "3681.6399", + "CPU min MHz:": "1500.0000", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "48 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "AMD-V", + "Frequency boost:": "enabled", + "NUMA node0 CPU(s):": "0-31,64-95", + "NUMA node1 CPU(s):": "32-63,96-127", + "Vulnerability Mds:": "Not affected", + "Core(s) per socket:": "32", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Not affected", + "On-line CPU(s) list:": "0,5-64,69-127", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "1-4,65-68", + "Vulnerability Meltdown:": "Not affected", + "Vulnerability Retbleed:": "Not affected", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; Retpolines, IBPB conditional, IBRS_FW, STIBP always-on, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "Not affected", + "Vulnerability Mmio stale data:": "Not affected", + "Vulnerability Tsx async abort:": "Not affected", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [ + { + "id": 0, + "name": "NVIDIA RTX A5000", + "uuid": "GPU-8123ac87-4c84-a9e9-8b99-054309b65f6c", + "driver": "525.125.06", + "serial": "1323821036088", + "memory_total_MiB": 24564 + } + ], + "num_gpus": 1 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null + }, + { + "proof_id": "2e4edf7e-5109-43cf-a48d-4b4fdfcd2e19", + "circuit_name": "circom-multiplier2", + "circuit_id": "4803fbe7-94df-4450-862e-222f380aa951", + "circuit_type": "circom", + "date_created": "2024-01-15T02:08:34.540Z", + "perform_verify": false, + "status": "Ready", + "compute_time": "P0DT00H00M03.935803S", + "compute_times": { + "prove": 3.0700035598129034, + "total": 4.0028952937573195, + "queued": 0.33355, + "clean_up": 0.0002639107406139374, + "file_setup": 0.27034700475633144, + "save_results": 0.06622319296002388, + "generate_witness_c": 0.5958553366363049 + }, + "file_sizes": { + "proof": 707, + "total": 713, + "public": 6, + "total_gb": 7.13e-7, + "total_mb": 0.000713 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "proof_input": null, + "proof": null, + "prover_implementation": { + "name": "GPU Tachyonic", + "smbc": 6, + "smcurve": "spparkx.alt_bn128", + "smreplicate": false + }, + "public": null, + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nopl nonstop_tsc cpuid extd_apicid aperfmperf rapl pni pclmulqdq monitor ssse3 fma cx16 pcid sse4_1 sse4_2 movbe popcnt aes xsave avx f16c rdrand lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt tce topoext perfctr_core perfctr_nb bpext perfctr_llc mwaitx cpb cat_l3 cdp_l3 invpcid_single hw_pstate ssbd mba ibrs ibpb stibp vmmcall fsgsbase bmi1 avx2 smep bmi2 invpcid cqm rdt_a rdseed adx smap clflushopt clwb sha_ni xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local clzero irperf xsaveerptr rdpru wbnoinvd amd_ppin brs arat npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold v_vmsave_vmload vgif v_spec_ctrl umip pku ospke vaes vpclmulqdq rdpid overflow_recov succor smca", + "Model:": "1", + "CPU(s):": "128", + "BogoMIPS:": "5200.47", + "L2 cache:": "32 MiB (64 instances)", + "L3 cache:": "256 MiB (8 instances)", + "Stepping:": "1", + "L1d cache:": "2 MiB (64 instances)", + "L1i cache:": "2 MiB (64 instances)", + "Socket(s):": "2", + "Vendor ID:": "AuthenticAMD", + "Byte Order:": "Little Endian", + "CPU family:": "25", + "Model name:": "AMD EPYC 7513 32-Core Processor", + "CPU max MHz:": "3681.6399", + "CPU min MHz:": "1500.0000", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "48 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "AMD-V", + "Frequency boost:": "enabled", + "NUMA node0 CPU(s):": "0-31,64-95", + "NUMA node1 CPU(s):": "32-63,96-127", + "Vulnerability Mds:": "Not affected", + "Core(s) per socket:": "32", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Not affected", + "On-line CPU(s) list:": "0,6,8,10-31,35-63,69,70,72,74-95,99-127", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "1-5,7,9,32-34,64-68,71,73,96-98", + "Vulnerability Meltdown:": "Not affected", + "Vulnerability Retbleed:": "Not affected", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; Retpolines, IBPB conditional, IBRS_FW, STIBP always-on, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "Not affected", + "Vulnerability Mmio stale data:": "Not affected", + "Vulnerability Tsx async abort:": "Not affected", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [ + { + "id": 0, + "name": "NVIDIA RTX A5000", + "uuid": "GPU-d8160060-7665-694b-2fae-0222ae6d41b2", + "driver": "525.125.06", + "serial": "1322721018312", + "memory_total_MiB": 24564 + } + ], + "num_gpus": 1 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null + }, + { + "proof_id": "e119fb54-5449-4a01-ab87-b45ef71643db", + "circuit_name": "circom-multiplier2", + "circuit_id": "384650aa-8967-4250-af2a-7314d45d6a9e", + "circuit_type": "circom", + "date_created": "2024-01-15T02:08:29.773Z", + "perform_verify": false, + "status": "Ready", + "compute_time": "P0DT00H00M05.856164S", + "compute_times": { + "prove": 5.639464415609837, + "total": 5.929233264178038, + "queued": 0.650797, + "clean_up": 0.00027068890631198883, + "file_setup": 0.25932174175977707, + "save_results": 0.0027653388679027557, + "generate_witness_c": 0.02706645056605339 + }, + "file_sizes": { + "proof": 707, + "total": 713, + "public": 6, + "total_gb": 7.13e-7, + "total_mb": 0.000713 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "proof_input": null, + "proof": null, + "prover_implementation": { + "name": "GPU Tachyonic", + "smbc": 6, + "smcurve": "spparkx.alt_bn128", + "smreplicate": false + }, + "public": null, + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nopl nonstop_tsc cpuid extd_apicid aperfmperf rapl pni pclmulqdq monitor ssse3 fma cx16 pcid sse4_1 sse4_2 movbe popcnt aes xsave avx f16c rdrand lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt tce topoext perfctr_core perfctr_nb bpext perfctr_llc mwaitx cpb cat_l3 cdp_l3 invpcid_single hw_pstate ssbd mba ibrs ibpb stibp vmmcall fsgsbase bmi1 avx2 smep bmi2 invpcid cqm rdt_a rdseed adx smap clflushopt clwb sha_ni xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local clzero irperf xsaveerptr rdpru wbnoinvd amd_ppin brs arat npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold v_vmsave_vmload vgif v_spec_ctrl umip pku ospke vaes vpclmulqdq rdpid overflow_recov succor smca", + "Model:": "1", + "CPU(s):": "128", + "BogoMIPS:": "5200.16", + "L2 cache:": "32 MiB (64 instances)", + "L3 cache:": "256 MiB (8 instances)", + "Stepping:": "1", + "L1d cache:": "2 MiB (64 instances)", + "L1i cache:": "2 MiB (64 instances)", + "Socket(s):": "2", + "Vendor ID:": "AuthenticAMD", + "Byte Order:": "Little Endian", + "CPU family:": "25", + "Model name:": "AMD EPYC 7513 32-Core Processor", + "CPU max MHz:": "3681.6399", + "CPU min MHz:": "1500.0000", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "48 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "AMD-V", + "Frequency boost:": "enabled", + "NUMA node0 CPU(s):": "0-31,64-95", + "NUMA node1 CPU(s):": "32-63,96-127", + "Vulnerability Mds:": "Not affected", + "Core(s) per socket:": "32", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Not affected", + "On-line CPU(s) list:": "0,1,7-31,34-65,67,71-95,98-127", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "2-6,32,33,66,68-70,96,97", + "Vulnerability Meltdown:": "Not affected", + "Vulnerability Retbleed:": "Not affected", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; Retpolines, IBPB conditional, IBRS_FW, STIBP always-on, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "Not affected", + "Vulnerability Mmio stale data:": "Not affected", + "Vulnerability Tsx async abort:": "Not affected", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [ + { + "id": 0, + "name": "NVIDIA RTX A5000", + "uuid": "GPU-79117d4d-91b9-eb61-753d-b86432cca7e8", + "driver": "525.125.06", + "serial": "1325121130125", + "memory_total_MiB": 24564 + } + ], + "num_gpus": 1 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null + }, + { + "proof_id": "d4611aeb-4705-4373-951c-ba4c1e0329b5", + "circuit_name": "circom-multiplier2", + "circuit_id": "fda87f7f-c3ec-4f10-948e-d033331c76c9", + "circuit_type": "circom", + "date_created": "2024-01-15T02:08:24.790Z", + "perform_verify": false, + "status": "Ready", + "compute_time": "P0DT00H00M02.340675S", + "compute_times": { + "prove": 1.4024820234626532, + "total": 2.4250366389751434, + "queued": 0.269107, + "clean_up": 0.0002933405339717865, + "file_setup": 0.3153865169733763, + "save_results": 0.06680999137461185, + "generate_witness_c": 0.6396786384284496 + }, + "file_sizes": { + "proof": 708, + "total": 714, + "public": 6, + "total_gb": 7.14e-7, + "total_mb": 0.000714 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "proof_input": null, + "proof": null, + "prover_implementation": { + "name": "GPU Tachyonic", + "smbc": 6, + "smcurve": "spparkx.alt_bn128", + "smreplicate": false + }, + "public": null, + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nopl nonstop_tsc cpuid extd_apicid aperfmperf rapl pni pclmulqdq monitor ssse3 fma cx16 pcid sse4_1 sse4_2 movbe popcnt aes xsave avx f16c rdrand lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt tce topoext perfctr_core perfctr_nb bpext perfctr_llc mwaitx cpb cat_l3 cdp_l3 invpcid_single hw_pstate ssbd mba ibrs ibpb stibp vmmcall fsgsbase bmi1 avx2 smep bmi2 invpcid cqm rdt_a rdseed adx smap clflushopt clwb sha_ni xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local clzero irperf xsaveerptr rdpru wbnoinvd amd_ppin brs arat npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold v_vmsave_vmload vgif v_spec_ctrl umip pku ospke vaes vpclmulqdq rdpid overflow_recov succor smca", + "Model:": "1", + "CPU(s):": "128", + "BogoMIPS:": "5200.47", + "L2 cache:": "32 MiB (64 instances)", + "L3 cache:": "256 MiB (8 instances)", + "Stepping:": "1", + "L1d cache:": "2 MiB (64 instances)", + "L1i cache:": "2 MiB (64 instances)", + "Socket(s):": "2", + "Vendor ID:": "AuthenticAMD", + "Byte Order:": "Little Endian", + "CPU family:": "25", + "Model name:": "AMD EPYC 7513 32-Core Processor", + "CPU max MHz:": "3681.6399", + "CPU min MHz:": "1500.0000", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "48 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "AMD-V", + "Frequency boost:": "enabled", + "NUMA node0 CPU(s):": "0-31,64-95", + "NUMA node1 CPU(s):": "32-63,96-127", + "Vulnerability Mds:": "Not affected", + "Core(s) per socket:": "32", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Not affected", + "On-line CPU(s) list:": "0,2,5,6,8,10-31,35-63,66,69,70,72,74-95,99-127", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "1,3,4,7,9,32-34,64,65,67,68,71,73,96-98", + "Vulnerability Meltdown:": "Not affected", + "Vulnerability Retbleed:": "Not affected", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; Retpolines, IBPB conditional, IBRS_FW, STIBP always-on, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "Not affected", + "Vulnerability Mmio stale data:": "Not affected", + "Vulnerability Tsx async abort:": "Not affected", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [ + { + "id": 0, + "name": "NVIDIA RTX A5000", + "uuid": "GPU-d8160060-7665-694b-2fae-0222ae6d41b2", + "driver": "525.125.06", + "serial": "1322721018312", + "memory_total_MiB": 24564 + } + ], + "num_gpus": 1 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null + }, + { + "proof_id": "4f8ff74c-1051-44a3-ab0c-f4a6284bbf64", + "circuit_name": "circom-multiplier2", + "circuit_id": "57a370e8-d904-4e45-ad58-196db3d30f4d", + "circuit_type": "circom", + "date_created": "2024-01-15T02:08:20.359Z", + "perform_verify": false, + "status": "Ready", + "compute_time": "P0DT00H00M05.889013S", + "compute_times": { + "prove": 5.641947815194726, + "total": 5.964788755401969, + "queued": 0.707221, + "clean_up": 0.00029845722019672394, + "file_setup": 0.2756399307399988, + "save_results": 0.003031056374311447, + "generate_witness_c": 0.04360153712332249 + }, + "file_sizes": { + "proof": 706, + "total": 712, + "public": 6, + "total_gb": 7.12e-7, + "total_mb": 0.000712 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "proof_input": null, + "proof": null, + "prover_implementation": { + "name": "GPU Tachyonic", + "smbc": 6, + "smcurve": "spparkx.alt_bn128", + "smreplicate": false + }, + "public": null, + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nopl nonstop_tsc cpuid extd_apicid aperfmperf rapl pni pclmulqdq monitor ssse3 fma cx16 pcid sse4_1 sse4_2 movbe popcnt aes xsave avx f16c rdrand lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt tce topoext perfctr_core perfctr_nb bpext perfctr_llc mwaitx cpb cat_l3 cdp_l3 invpcid_single hw_pstate ssbd mba ibrs ibpb stibp vmmcall fsgsbase bmi1 avx2 smep bmi2 invpcid cqm rdt_a rdseed adx smap clflushopt clwb sha_ni xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local clzero irperf xsaveerptr rdpru wbnoinvd amd_ppin brs arat npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold v_vmsave_vmload vgif v_spec_ctrl umip pku ospke vaes vpclmulqdq rdpid overflow_recov succor smca", + "Model:": "1", + "CPU(s):": "128", + "BogoMIPS:": "5200.16", + "L2 cache:": "32 MiB (64 instances)", + "L3 cache:": "256 MiB (8 instances)", + "Stepping:": "1", + "L1d cache:": "2 MiB (64 instances)", + "L1i cache:": "2 MiB (64 instances)", + "Socket(s):": "2", + "Vendor ID:": "AuthenticAMD", + "Byte Order:": "Little Endian", + "CPU family:": "25", + "Model name:": "AMD EPYC 7513 32-Core Processor", + "CPU max MHz:": "3681.6399", + "CPU min MHz:": "1500.0000", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "48 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "AMD-V", + "Frequency boost:": "enabled", + "NUMA node0 CPU(s):": "0-31,64-95", + "NUMA node1 CPU(s):": "32-63,96-127", + "Vulnerability Mds:": "Not affected", + "Core(s) per socket:": "32", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Not affected", + "On-line CPU(s) list:": "0,1,7-31,34-65,67,71-95,98-127", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "2-6,32,33,66,68-70,96,97", + "Vulnerability Meltdown:": "Not affected", + "Vulnerability Retbleed:": "Not affected", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; Retpolines, IBPB conditional, IBRS_FW, STIBP always-on, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "Not affected", + "Vulnerability Mmio stale data:": "Not affected", + "Vulnerability Tsx async abort:": "Not affected", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [ + { + "id": 0, + "name": "NVIDIA RTX A5000", + "uuid": "GPU-79117d4d-91b9-eb61-753d-b86432cca7e8", + "driver": "525.125.06", + "serial": "1325121130125", + "memory_total_MiB": 24564 + } + ], + "num_gpus": 1 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null + }, + { + "proof_id": "d4ed1066-64bb-4f8b-a04c-03e87ba067d0", + "circuit_name": "circom-multiplier2", + "circuit_id": "1ffbe8f9-87c8-4e42-baa8-7aa33c4d17ee", + "circuit_type": "circom", + "date_created": "2024-01-15T02:07:24.129Z", + "perform_verify": false, + "status": "Ready", + "compute_time": "P0DT00H00M05.822988S", + "compute_times": { + "prove": 5.622058680281043, + "total": 5.897718669846654, + "queued": 7.598676, + "clean_up": 0.00030495598912239075, + "file_setup": 0.26278817281126976, + "save_results": 0.0033362358808517456, + "generate_witness_c": 0.008939847350120544 + }, + "file_sizes": { + "proof": 705, + "total": 711, + "public": 6, + "total_gb": 7.11e-7, + "total_mb": 0.000711 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "proof_input": null, + "proof": null, + "prover_implementation": { + "name": "GPU Tachyonic", + "smbc": 6, + "smcurve": "spparkx.alt_bn128", + "smreplicate": false + }, + "public": null, + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nopl nonstop_tsc cpuid extd_apicid aperfmperf rapl pni pclmulqdq monitor ssse3 fma cx16 pcid sse4_1 sse4_2 movbe popcnt aes xsave avx f16c rdrand lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt tce topoext perfctr_core perfctr_nb bpext perfctr_llc mwaitx cpb cat_l3 cdp_l3 invpcid_single hw_pstate ssbd mba ibrs ibpb stibp vmmcall fsgsbase bmi1 avx2 smep bmi2 invpcid cqm rdt_a rdseed adx smap clflushopt clwb sha_ni xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local clzero irperf xsaveerptr rdpru wbnoinvd amd_ppin brs arat npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold v_vmsave_vmload vgif v_spec_ctrl umip pku ospke vaes vpclmulqdq rdpid overflow_recov succor smca", + "Model:": "1", + "CPU(s):": "128", + "BogoMIPS:": "5200.16", + "L2 cache:": "32 MiB (64 instances)", + "L3 cache:": "256 MiB (8 instances)", + "Stepping:": "1", + "L1d cache:": "2 MiB (64 instances)", + "L1i cache:": "2 MiB (64 instances)", + "Socket(s):": "2", + "Vendor ID:": "AuthenticAMD", + "Byte Order:": "Little Endian", + "CPU family:": "25", + "Model name:": "AMD EPYC 7513 32-Core Processor", + "CPU max MHz:": "3681.6399", + "CPU min MHz:": "1500.0000", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "48 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "AMD-V", + "Frequency boost:": "enabled", + "NUMA node0 CPU(s):": "0-31,64-95", + "NUMA node1 CPU(s):": "32-63,96-127", + "Vulnerability Mds:": "Not affected", + "Core(s) per socket:": "32", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Not affected", + "On-line CPU(s) list:": "0,1,7-31,34-65,67,71-95,98-127", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "2-6,32,33,66,68-70,96,97", + "Vulnerability Meltdown:": "Not affected", + "Vulnerability Retbleed:": "Not affected", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; Retpolines, IBPB conditional, IBRS_FW, STIBP always-on, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "Not affected", + "Vulnerability Mmio stale data:": "Not affected", + "Vulnerability Tsx async abort:": "Not affected", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [ + { + "id": 0, + "name": "NVIDIA RTX A5000", + "uuid": "GPU-79117d4d-91b9-eb61-753d-b86432cca7e8", + "driver": "525.125.06", + "serial": "1325121130125", + "memory_total_MiB": 24564 + } + ], + "num_gpus": 1 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null + }, + { + "proof_id": "62e6a199-072a-4fbb-bd75-7d5ae26c3bf0", + "circuit_name": "circom-multiplier2", + "circuit_id": "d40bcb67-e940-4fb1-b733-5382a0d24818", + "circuit_type": "circom", + "date_created": "2024-01-15T02:07:23.768Z", + "perform_verify": false, + "status": "Ready", + "compute_time": "P0DT00H00M05.857713S", + "compute_times": { + "prove": 5.647087793797255, + "total": 5.9318443313241005, + "queued": 0.709273, + "clean_up": 0.000293998047709465, + "file_setup": 0.259655237197876, + "save_results": 0.0029127690941095352, + "generate_witness_c": 0.021628186106681824 + }, + "file_sizes": { + "proof": 708, + "total": 714, + "public": 6, + "total_gb": 7.14e-7, + "total_mb": 0.000714 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "proof_input": null, + "proof": null, + "prover_implementation": { + "name": "GPU Tachyonic", + "smbc": 6, + "smcurve": "spparkx.alt_bn128", + "smreplicate": false + }, + "public": null, + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nopl nonstop_tsc cpuid extd_apicid aperfmperf rapl pni pclmulqdq monitor ssse3 fma cx16 pcid sse4_1 sse4_2 movbe popcnt aes xsave avx f16c rdrand lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt tce topoext perfctr_core perfctr_nb bpext perfctr_llc mwaitx cpb cat_l3 cdp_l3 invpcid_single hw_pstate ssbd mba ibrs ibpb stibp vmmcall fsgsbase bmi1 avx2 smep bmi2 invpcid cqm rdt_a rdseed adx smap clflushopt clwb sha_ni xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local clzero irperf xsaveerptr rdpru wbnoinvd amd_ppin brs arat npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold v_vmsave_vmload vgif v_spec_ctrl umip pku ospke vaes vpclmulqdq rdpid overflow_recov succor smca", + "Model:": "1", + "CPU(s):": "128", + "BogoMIPS:": "5200.16", + "L2 cache:": "32 MiB (64 instances)", + "L3 cache:": "256 MiB (8 instances)", + "Stepping:": "1", + "L1d cache:": "2 MiB (64 instances)", + "L1i cache:": "2 MiB (64 instances)", + "Socket(s):": "2", + "Vendor ID:": "AuthenticAMD", + "Byte Order:": "Little Endian", + "CPU family:": "25", + "Model name:": "AMD EPYC 7513 32-Core Processor", + "CPU max MHz:": "3681.6399", + "CPU min MHz:": "1500.0000", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "48 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "AMD-V", + "Frequency boost:": "enabled", + "NUMA node0 CPU(s):": "0-31,64-95", + "NUMA node1 CPU(s):": "32-63,96-127", + "Vulnerability Mds:": "Not affected", + "Core(s) per socket:": "32", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Not affected", + "On-line CPU(s) list:": "0,1,7-31,34-65,67,71-95,98-127", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "2-6,32,33,66,68-70,96,97", + "Vulnerability Meltdown:": "Not affected", + "Vulnerability Retbleed:": "Not affected", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; Retpolines, IBPB conditional, IBRS_FW, STIBP always-on, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "Not affected", + "Vulnerability Mmio stale data:": "Not affected", + "Vulnerability Tsx async abort:": "Not affected", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [ + { + "id": 0, + "name": "NVIDIA RTX A5000", + "uuid": "GPU-79117d4d-91b9-eb61-753d-b86432cca7e8", + "driver": "525.125.06", + "serial": "1325121130125", + "memory_total_MiB": 24564 + } + ], + "num_gpus": 1 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null + }, + { + "proof_id": "4a8ec462-1b17-4478-ab4d-daec1c1d19e0", + "circuit_name": "circom-multiplier2", + "circuit_id": "a5de0eca-b376-4d33-91b6-9a30d4235aa7", + "circuit_type": "circom", + "date_created": "2024-01-15T02:03:39.549Z", + "perform_verify": false, + "status": "Ready", + "compute_time": "P0DT00H00M05.830061S", + "compute_times": { + "prove": 5.631390610709786, + "total": 5.904656020924449, + "queued": 1.982144, + "clean_up": 0.00028679706156253815, + "file_setup": 0.2506247963756323, + "save_results": 0.0030198898166418076, + "generate_witness_c": 0.018950100988149643 + }, + "file_sizes": { + "proof": 708, + "total": 714, + "public": 6, + "total_gb": 7.14e-7, + "total_mb": 0.000714 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "proof_input": null, + "proof": null, + "prover_implementation": { + "name": "GPU Tachyonic", + "smbc": 6, + "smcurve": "spparkx.alt_bn128", + "smreplicate": false + }, + "public": null, + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nopl nonstop_tsc cpuid extd_apicid aperfmperf rapl pni pclmulqdq monitor ssse3 fma cx16 pcid sse4_1 sse4_2 movbe popcnt aes xsave avx f16c rdrand lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt tce topoext perfctr_core perfctr_nb bpext perfctr_llc mwaitx cpb cat_l3 cdp_l3 invpcid_single hw_pstate ssbd mba ibrs ibpb stibp vmmcall fsgsbase bmi1 avx2 smep bmi2 invpcid cqm rdt_a rdseed adx smap clflushopt clwb sha_ni xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local clzero irperf xsaveerptr rdpru wbnoinvd amd_ppin brs arat npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold v_vmsave_vmload vgif v_spec_ctrl umip pku ospke vaes vpclmulqdq rdpid overflow_recov succor smca", + "Model:": "1", + "CPU(s):": "128", + "BogoMIPS:": "5200.16", + "L2 cache:": "32 MiB (64 instances)", + "L3 cache:": "256 MiB (8 instances)", + "Stepping:": "1", + "L1d cache:": "2 MiB (64 instances)", + "L1i cache:": "2 MiB (64 instances)", + "Socket(s):": "2", + "Vendor ID:": "AuthenticAMD", + "Byte Order:": "Little Endian", + "CPU family:": "25", + "Model name:": "AMD EPYC 7513 32-Core Processor", + "CPU max MHz:": "3681.6399", + "CPU min MHz:": "1500.0000", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "48 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "AMD-V", + "Frequency boost:": "enabled", + "NUMA node0 CPU(s):": "0-31,64-95", + "NUMA node1 CPU(s):": "32-63,96-127", + "Vulnerability Mds:": "Not affected", + "Core(s) per socket:": "32", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Not affected", + "On-line CPU(s) list:": "0,1,7-31,34-65,67,71-95,98-127", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "2-6,32,33,66,68-70,96,97", + "Vulnerability Meltdown:": "Not affected", + "Vulnerability Retbleed:": "Not affected", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; Retpolines, IBPB conditional, IBRS_FW, STIBP always-on, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "Not affected", + "Vulnerability Mmio stale data:": "Not affected", + "Vulnerability Tsx async abort:": "Not affected", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [ + { + "id": 0, + "name": "NVIDIA RTX A5000", + "uuid": "GPU-79117d4d-91b9-eb61-753d-b86432cca7e8", + "driver": "525.125.06", + "serial": "1325121130125", + "memory_total_MiB": 24564 + } + ], + "num_gpus": 1 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null + }, + { + "proof_id": "55636021-bab1-4e5c-a552-271ecd3bca46", + "circuit_name": "circom-multiplier2", + "circuit_id": "3eec50d0-8bc1-4266-8506-a76961a3627d", + "circuit_type": "circom", + "date_created": "2024-01-15T02:03:30.608Z", + "perform_verify": false, + "status": "Ready", + "compute_time": "P0DT00H00M05.833596S", + "compute_times": { + "prove": 5.6385393515229225, + "total": 5.9040695410221815, + "queued": 0.701332, + "clean_up": 0.00033533573150634766, + "file_setup": 0.24379334598779678, + "save_results": 0.0030993279069662094, + "generate_witness_c": 0.017941521480679512 + }, + "file_sizes": { + "proof": 706, + "total": 712, + "public": 6, + "total_gb": 7.12e-7, + "total_mb": 0.000712 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "proof_input": null, + "proof": null, + "prover_implementation": { + "name": "GPU Tachyonic", + "smbc": 6, + "smcurve": "spparkx.alt_bn128", + "smreplicate": false + }, + "public": null, + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nopl nonstop_tsc cpuid extd_apicid aperfmperf rapl pni pclmulqdq monitor ssse3 fma cx16 pcid sse4_1 sse4_2 movbe popcnt aes xsave avx f16c rdrand lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt tce topoext perfctr_core perfctr_nb bpext perfctr_llc mwaitx cpb cat_l3 cdp_l3 invpcid_single hw_pstate ssbd mba ibrs ibpb stibp vmmcall fsgsbase bmi1 avx2 smep bmi2 invpcid cqm rdt_a rdseed adx smap clflushopt clwb sha_ni xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local clzero irperf xsaveerptr rdpru wbnoinvd amd_ppin brs arat npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold v_vmsave_vmload vgif v_spec_ctrl umip pku ospke vaes vpclmulqdq rdpid overflow_recov succor smca", + "Model:": "1", + "CPU(s):": "128", + "BogoMIPS:": "5200.16", + "L2 cache:": "32 MiB (64 instances)", + "L3 cache:": "256 MiB (8 instances)", + "Stepping:": "1", + "L1d cache:": "2 MiB (64 instances)", + "L1i cache:": "2 MiB (64 instances)", + "Socket(s):": "2", + "Vendor ID:": "AuthenticAMD", + "Byte Order:": "Little Endian", + "CPU family:": "25", + "Model name:": "AMD EPYC 7513 32-Core Processor", + "CPU max MHz:": "3681.6399", + "CPU min MHz:": "1500.0000", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "48 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "AMD-V", + "Frequency boost:": "enabled", + "NUMA node0 CPU(s):": "0-31,64-95", + "NUMA node1 CPU(s):": "32-63,96-127", + "Vulnerability Mds:": "Not affected", + "Core(s) per socket:": "32", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Not affected", + "On-line CPU(s) list:": "0,1,7-31,34-65,67,71-95,98-127", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "2-6,32,33,66,68-70,96,97", + "Vulnerability Meltdown:": "Not affected", + "Vulnerability Retbleed:": "Not affected", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; Retpolines, IBPB conditional, IBRS_FW, STIBP always-on, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "Not affected", + "Vulnerability Mmio stale data:": "Not affected", + "Vulnerability Tsx async abort:": "Not affected", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [ + { + "id": 0, + "name": "NVIDIA RTX A5000", + "uuid": "GPU-79117d4d-91b9-eb61-753d-b86432cca7e8", + "driver": "525.125.06", + "serial": "1325121130125", + "memory_total_MiB": 24564 + } + ], + "num_gpus": 1 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null + }, + { + "proof_id": "6cdf4182-8844-4c68-b6cd-332129204371", + "circuit_name": "circom-multiplier2", + "circuit_id": "596a0973-b6a7-4e8f-b6d6-9f2ddb483f02", + "circuit_type": "circom", + "date_created": "2024-01-15T02:01:17.976Z", + "perform_verify": false, + "status": "Ready", + "compute_time": "P0DT00H00M05.847273S", + "compute_times": { + "prove": 5.660725159570575, + "total": 5.9144034665077925, + "queued": 0.696042, + "clean_up": 0.000287666916847229, + "file_setup": 0.2316605094820261, + "save_results": 0.0032375045120716095, + "generate_witness_c": 0.018273497000336647 + }, + "file_sizes": { + "proof": 707, + "total": 713, + "public": 6, + "total_gb": 7.13e-7, + "total_mb": 0.000713 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "proof_input": null, + "proof": null, + "prover_implementation": { + "name": "GPU Tachyonic", + "smbc": 6, + "smcurve": "spparkx.alt_bn128", + "smreplicate": false + }, + "public": null, + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nopl nonstop_tsc cpuid extd_apicid aperfmperf rapl pni pclmulqdq monitor ssse3 fma cx16 pcid sse4_1 sse4_2 movbe popcnt aes xsave avx f16c rdrand lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt tce topoext perfctr_core perfctr_nb bpext perfctr_llc mwaitx cpb cat_l3 cdp_l3 invpcid_single hw_pstate ssbd mba ibrs ibpb stibp vmmcall fsgsbase bmi1 avx2 smep bmi2 invpcid cqm rdt_a rdseed adx smap clflushopt clwb sha_ni xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local clzero irperf xsaveerptr rdpru wbnoinvd amd_ppin brs arat npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold v_vmsave_vmload vgif v_spec_ctrl umip pku ospke vaes vpclmulqdq rdpid overflow_recov succor smca", + "Model:": "1", + "CPU(s):": "128", + "BogoMIPS:": "5200.16", + "L2 cache:": "32 MiB (64 instances)", + "L3 cache:": "256 MiB (8 instances)", + "Stepping:": "1", + "L1d cache:": "2 MiB (64 instances)", + "L1i cache:": "2 MiB (64 instances)", + "Socket(s):": "2", + "Vendor ID:": "AuthenticAMD", + "Byte Order:": "Little Endian", + "CPU family:": "25", + "Model name:": "AMD EPYC 7513 32-Core Processor", + "CPU max MHz:": "3681.6399", + "CPU min MHz:": "1500.0000", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "48 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "AMD-V", + "Frequency boost:": "enabled", + "NUMA node0 CPU(s):": "0-31,64-95", + "NUMA node1 CPU(s):": "32-63,96-127", + "Vulnerability Mds:": "Not affected", + "Core(s) per socket:": "32", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Not affected", + "On-line CPU(s) list:": "0,1,7-31,34-65,67,71-95,98-127", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "2-6,32,33,66,68-70,96,97", + "Vulnerability Meltdown:": "Not affected", + "Vulnerability Retbleed:": "Not affected", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; Retpolines, IBPB conditional, IBRS_FW, STIBP always-on, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "Not affected", + "Vulnerability Mmio stale data:": "Not affected", + "Vulnerability Tsx async abort:": "Not affected", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [ + { + "id": 0, + "name": "NVIDIA RTX A5000", + "uuid": "GPU-79117d4d-91b9-eb61-753d-b86432cca7e8", + "driver": "525.125.06", + "serial": "1325121130125", + "memory_total_MiB": 24564 + } + ], + "num_gpus": 1 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null + }, + { + "proof_id": "fc45e68e-ccfe-43ab-87c1-f3114dada607", + "circuit_name": "circom-multiplier2", + "circuit_id": "4f5b0304-a53e-45e9-b83f-8e06611dc640", + "circuit_type": "circom", + "date_created": "2024-01-15T01:53:10.576Z", + "perform_verify": false, + "status": "Ready", + "compute_time": "P0DT00H00M05.825130S", + "compute_times": { + "prove": 5.63365101441741, + "total": 5.900212554261088, + "queued": 8.137106, + "clean_up": 0.00022866018116474152, + "file_setup": 0.25481966882944107, + "save_results": 0.0027084313333034515, + "generate_witness_c": 0.008522702381014824 + }, + "file_sizes": { + "proof": 708, + "total": 714, + "public": 6, + "total_gb": 7.14e-7, + "total_mb": 0.000714 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "proof_input": null, + "proof": null, + "prover_implementation": { + "name": "GPU Tachyonic", + "smbc": 6, + "smcurve": "spparkx.alt_bn128", + "smreplicate": false + }, + "public": null, + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nopl nonstop_tsc cpuid extd_apicid aperfmperf rapl pni pclmulqdq monitor ssse3 fma cx16 pcid sse4_1 sse4_2 movbe popcnt aes xsave avx f16c rdrand lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt tce topoext perfctr_core perfctr_nb bpext perfctr_llc mwaitx cpb cat_l3 cdp_l3 invpcid_single hw_pstate ssbd mba ibrs ibpb stibp vmmcall fsgsbase bmi1 avx2 smep bmi2 invpcid cqm rdt_a rdseed adx smap clflushopt clwb sha_ni xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local clzero irperf xsaveerptr rdpru wbnoinvd amd_ppin brs arat npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold v_vmsave_vmload vgif v_spec_ctrl umip pku ospke vaes vpclmulqdq rdpid overflow_recov succor smca", + "Model:": "1", + "CPU(s):": "128", + "BogoMIPS:": "5200.16", + "L2 cache:": "32 MiB (64 instances)", + "L3 cache:": "256 MiB (8 instances)", + "Stepping:": "1", + "L1d cache:": "2 MiB (64 instances)", + "L1i cache:": "2 MiB (64 instances)", + "Socket(s):": "2", + "Vendor ID:": "AuthenticAMD", + "Byte Order:": "Little Endian", + "CPU family:": "25", + "Model name:": "AMD EPYC 7513 32-Core Processor", + "CPU max MHz:": "3681.6399", + "CPU min MHz:": "1500.0000", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "48 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "AMD-V", + "Frequency boost:": "enabled", + "NUMA node0 CPU(s):": "0-31,64-95", + "NUMA node1 CPU(s):": "32-63,96-127", + "Vulnerability Mds:": "Not affected", + "Core(s) per socket:": "32", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Not affected", + "On-line CPU(s) list:": "0,1,7-31,34-65,67,71-95,98-127", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "2-6,32,33,66,68-70,96,97", + "Vulnerability Meltdown:": "Not affected", + "Vulnerability Retbleed:": "Not affected", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; Retpolines, IBPB conditional, IBRS_FW, STIBP always-on, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "Not affected", + "Vulnerability Mmio stale data:": "Not affected", + "Vulnerability Tsx async abort:": "Not affected", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [ + { + "id": 0, + "name": "NVIDIA RTX A5000", + "uuid": "GPU-79117d4d-91b9-eb61-753d-b86432cca7e8", + "driver": "525.125.06", + "serial": "1325121130125", + "memory_total_MiB": 24564 + } + ], + "num_gpus": 1 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null + }, + { + "proof_id": "93f27b36-de2d-4251-b7d6-1c9fccca2f06", + "circuit_name": "circom-multiplier2", + "circuit_id": "696b5f3c-ac4c-4c88-a40a-7b8d5239cb47", + "circuit_type": "circom", + "date_created": "2024-01-15T01:53:04.491Z", + "perform_verify": false, + "status": "Ready", + "compute_time": "P0DT00H00M06.143579S", + "compute_times": { + "prove": 5.624820232391357, + "total": 6.217369062826037, + "queued": 6.939374, + "clean_up": 0.0002844296395778656, + "file_setup": 0.577876154333353, + "save_results": 0.002981366589665413, + "generate_witness_c": 0.011145314201712608 + }, + "file_sizes": { + "proof": 707, + "total": 713, + "public": 6, + "total_gb": 7.13e-7, + "total_mb": 0.000713 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "proof_input": null, + "proof": null, + "prover_implementation": { + "name": "GPU Tachyonic", + "smbc": 6, + "smcurve": "spparkx.alt_bn128", + "smreplicate": false + }, + "public": null, + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nopl nonstop_tsc cpuid extd_apicid aperfmperf rapl pni pclmulqdq monitor ssse3 fma cx16 pcid sse4_1 sse4_2 movbe popcnt aes xsave avx f16c rdrand lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt tce topoext perfctr_core perfctr_nb bpext perfctr_llc mwaitx cpb cat_l3 cdp_l3 invpcid_single hw_pstate ssbd mba ibrs ibpb stibp vmmcall fsgsbase bmi1 avx2 smep bmi2 invpcid cqm rdt_a rdseed adx smap clflushopt clwb sha_ni xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local clzero irperf xsaveerptr rdpru wbnoinvd amd_ppin brs arat npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold v_vmsave_vmload vgif v_spec_ctrl umip pku ospke vaes vpclmulqdq rdpid overflow_recov succor smca", + "Model:": "1", + "CPU(s):": "128", + "BogoMIPS:": "5200.16", + "L2 cache:": "32 MiB (64 instances)", + "L3 cache:": "256 MiB (8 instances)", + "Stepping:": "1", + "L1d cache:": "2 MiB (64 instances)", + "L1i cache:": "2 MiB (64 instances)", + "Socket(s):": "2", + "Vendor ID:": "AuthenticAMD", + "Byte Order:": "Little Endian", + "CPU family:": "25", + "Model name:": "AMD EPYC 7513 32-Core Processor", + "CPU max MHz:": "3681.6399", + "CPU min MHz:": "1500.0000", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "48 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "AMD-V", + "Frequency boost:": "enabled", + "NUMA node0 CPU(s):": "0-31,64-95", + "NUMA node1 CPU(s):": "32-63,96-127", + "Vulnerability Mds:": "Not affected", + "Core(s) per socket:": "32", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Not affected", + "On-line CPU(s) list:": "0,1,7-31,34-65,67,71-95,98-127", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "2-6,32,33,66,68-70,96,97", + "Vulnerability Meltdown:": "Not affected", + "Vulnerability Retbleed:": "Not affected", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; Retpolines, IBPB conditional, IBRS_FW, STIBP always-on, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "Not affected", + "Vulnerability Mmio stale data:": "Not affected", + "Vulnerability Tsx async abort:": "Not affected", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [ + { + "id": 0, + "name": "NVIDIA RTX A5000", + "uuid": "GPU-79117d4d-91b9-eb61-753d-b86432cca7e8", + "driver": "525.125.06", + "serial": "1325121130125", + "memory_total_MiB": 24564 + } + ], + "num_gpus": 1 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null + }, + { + "proof_id": "6c5ed6a4-de8d-4cde-9d04-844c0fae1903", + "circuit_name": "circom-multiplier2", + "circuit_id": "b4a23df2-a7e7-4eb8-9ce1-f9d52a7b5efd", + "circuit_type": "circom", + "date_created": "2024-01-15T01:53:00.837Z", + "perform_verify": false, + "status": "Ready", + "compute_time": "P0DT00H00M05.826862S", + "compute_times": { + "prove": 5.6370560657233, + "total": 5.890984209254384, + "queued": 0.694293, + "clean_up": 0.00031204894185066223, + "file_setup": 0.23010724037885666, + "save_results": 0.0025510434061288834, + "generate_witness_c": 0.02062433399260044 + }, + "file_sizes": { + "proof": 708, + "total": 714, + "public": 6, + "total_gb": 7.14e-7, + "total_mb": 0.000714 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "proof_input": null, + "proof": null, + "prover_implementation": { + "name": "GPU Tachyonic", + "smbc": 6, + "smcurve": "spparkx.alt_bn128", + "smreplicate": false + }, + "public": null, + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nopl nonstop_tsc cpuid extd_apicid aperfmperf rapl pni pclmulqdq monitor ssse3 fma cx16 pcid sse4_1 sse4_2 movbe popcnt aes xsave avx f16c rdrand lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt tce topoext perfctr_core perfctr_nb bpext perfctr_llc mwaitx cpb cat_l3 cdp_l3 invpcid_single hw_pstate ssbd mba ibrs ibpb stibp vmmcall fsgsbase bmi1 avx2 smep bmi2 invpcid cqm rdt_a rdseed adx smap clflushopt clwb sha_ni xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local clzero irperf xsaveerptr rdpru wbnoinvd amd_ppin brs arat npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold v_vmsave_vmload vgif v_spec_ctrl umip pku ospke vaes vpclmulqdq rdpid overflow_recov succor smca", + "Model:": "1", + "CPU(s):": "128", + "BogoMIPS:": "5200.16", + "L2 cache:": "32 MiB (64 instances)", + "L3 cache:": "256 MiB (8 instances)", + "Stepping:": "1", + "L1d cache:": "2 MiB (64 instances)", + "L1i cache:": "2 MiB (64 instances)", + "Socket(s):": "2", + "Vendor ID:": "AuthenticAMD", + "Byte Order:": "Little Endian", + "CPU family:": "25", + "Model name:": "AMD EPYC 7513 32-Core Processor", + "CPU max MHz:": "3681.6399", + "CPU min MHz:": "1500.0000", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "48 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "AMD-V", + "Frequency boost:": "enabled", + "NUMA node0 CPU(s):": "0-31,64-95", + "NUMA node1 CPU(s):": "32-63,96-127", + "Vulnerability Mds:": "Not affected", + "Core(s) per socket:": "32", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Not affected", + "On-line CPU(s) list:": "0,1,7-31,34-65,67,71-95,98-127", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "2-6,32,33,66,68-70,96,97", + "Vulnerability Meltdown:": "Not affected", + "Vulnerability Retbleed:": "Not affected", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; Retpolines, IBPB conditional, IBRS_FW, STIBP always-on, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "Not affected", + "Vulnerability Mmio stale data:": "Not affected", + "Vulnerability Tsx async abort:": "Not affected", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [ + { + "id": 0, + "name": "NVIDIA RTX A5000", + "uuid": "GPU-79117d4d-91b9-eb61-753d-b86432cca7e8", + "driver": "525.125.06", + "serial": "1325121130125", + "memory_total_MiB": 24564 + } + ], + "num_gpus": 1 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null + }, + { + "proof_id": "46048553-2c00-40bc-ae69-76f68d26286e", + "circuit_name": "circom-multiplier2", + "circuit_id": "d492fd4d-7509-45fb-87b3-adef4fd745df", + "circuit_type": "circom", + "date_created": "2024-01-15T01:52:49.479Z", + "perform_verify": false, + "status": "Ready", + "compute_time": "P0DT00H00M05.859514S", + "compute_times": { + "prove": 5.655713541433215, + "total": 5.953595075756311, + "queued": 0.693846, + "clean_up": 0.0002659261226654053, + "file_setup": 0.2661227900534868, + "save_results": 0.002224266529083252, + "generate_witness_c": 0.028907276690006256 + }, + "file_sizes": { + "proof": 707, + "total": 713, + "public": 6, + "total_gb": 7.13e-7, + "total_mb": 0.000713 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "proof_input": null, + "proof": null, + "prover_implementation": { + "name": "GPU Tachyonic", + "smbc": 6, + "smcurve": "spparkx.alt_bn128", + "smreplicate": false + }, + "public": null, + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nopl nonstop_tsc cpuid extd_apicid aperfmperf rapl pni pclmulqdq monitor ssse3 fma cx16 pcid sse4_1 sse4_2 movbe popcnt aes xsave avx f16c rdrand lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt tce topoext perfctr_core perfctr_nb bpext perfctr_llc mwaitx cpb cat_l3 cdp_l3 invpcid_single hw_pstate ssbd mba ibrs ibpb stibp vmmcall fsgsbase bmi1 avx2 smep bmi2 invpcid cqm rdt_a rdseed adx smap clflushopt clwb sha_ni xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local clzero irperf xsaveerptr rdpru wbnoinvd amd_ppin brs arat npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold v_vmsave_vmload vgif v_spec_ctrl umip pku ospke vaes vpclmulqdq rdpid overflow_recov succor smca", + "Model:": "1", + "CPU(s):": "128", + "BogoMIPS:": "5200.16", + "L2 cache:": "32 MiB (64 instances)", + "L3 cache:": "256 MiB (8 instances)", + "Stepping:": "1", + "L1d cache:": "2 MiB (64 instances)", + "L1i cache:": "2 MiB (64 instances)", + "Socket(s):": "2", + "Vendor ID:": "AuthenticAMD", + "Byte Order:": "Little Endian", + "CPU family:": "25", + "Model name:": "AMD EPYC 7513 32-Core Processor", + "CPU max MHz:": "3681.6399", + "CPU min MHz:": "1500.0000", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "48 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "AMD-V", + "Frequency boost:": "enabled", + "NUMA node0 CPU(s):": "0-31,64-95", + "NUMA node1 CPU(s):": "32-63,96-127", + "Vulnerability Mds:": "Not affected", + "Core(s) per socket:": "32", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Not affected", + "On-line CPU(s) list:": "0,1,7-31,34-65,67,71-95,98-127", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "2-6,32,33,66,68-70,96,97", + "Vulnerability Meltdown:": "Not affected", + "Vulnerability Retbleed:": "Not affected", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; Retpolines, IBPB conditional, IBRS_FW, STIBP always-on, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "Not affected", + "Vulnerability Mmio stale data:": "Not affected", + "Vulnerability Tsx async abort:": "Not affected", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [ + { + "id": 0, + "name": "NVIDIA RTX A5000", + "uuid": "GPU-79117d4d-91b9-eb61-753d-b86432cca7e8", + "driver": "525.125.06", + "serial": "1325121130125", + "memory_total_MiB": 24564 + } + ], + "num_gpus": 1 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null + }, + { + "proof_id": "73c4b7e5-e5e8-42de-b0ee-ca5b596c012d", + "circuit_name": "circom-multiplier2", + "circuit_id": "16c96d49-925a-4232-8da4-c43026de854e", + "circuit_type": "circom", + "date_created": "2024-01-15T01:44:52.289Z", + "perform_verify": false, + "status": "Ready", + "compute_time": "P0DT00H00M06.397579S", + "compute_times": { + "prove": 6.192587662488222, + "total": 6.465461192652583, + "queued": 9.005381, + "clean_up": 0.0004098862409591675, + "file_setup": 0.25517357513308525, + "save_results": 0.00757579505443573, + "generate_witness_c": 0.009418565779924393 + }, + "file_sizes": { + "proof": 708, + "total": 714, + "public": 6, + "total_gb": 7.14e-7, + "total_mb": 0.000714 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "proof_input": null, + "proof": null, + "prover_implementation": { + "name": "GPU Tachyonic", + "smbc": 6, + "smcurve": "spparkx.alt_bn128", + "smreplicate": false + }, + "public": null, + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nopl nonstop_tsc cpuid extd_apicid aperfmperf rapl pni pclmulqdq monitor ssse3 fma cx16 pcid sse4_1 sse4_2 movbe popcnt aes xsave avx f16c rdrand lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt tce topoext perfctr_core perfctr_nb bpext perfctr_llc mwaitx cpb cat_l3 cdp_l3 invpcid_single hw_pstate ssbd mba ibrs ibpb stibp vmmcall fsgsbase bmi1 avx2 smep bmi2 invpcid cqm rdt_a rdseed adx smap clflushopt clwb sha_ni xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local clzero irperf xsaveerptr rdpru wbnoinvd amd_ppin brs arat npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold v_vmsave_vmload vgif v_spec_ctrl umip pku ospke vaes vpclmulqdq rdpid overflow_recov succor smca", + "Model:": "1", + "CPU(s):": "128", + "BogoMIPS:": "5200.17", + "L2 cache:": "32 MiB (64 instances)", + "L3 cache:": "256 MiB (8 instances)", + "Stepping:": "1", + "L1d cache:": "2 MiB (64 instances)", + "L1i cache:": "2 MiB (64 instances)", + "Socket(s):": "2", + "Vendor ID:": "AuthenticAMD", + "Byte Order:": "Little Endian", + "CPU family:": "25", + "Model name:": "AMD EPYC 7513 32-Core Processor", + "CPU max MHz:": "3681.6399", + "CPU min MHz:": "1500.0000", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "48 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "AMD-V", + "Frequency boost:": "enabled", + "NUMA node0 CPU(s):": "0-31,64-95", + "NUMA node1 CPU(s):": "32-63,96-127", + "Vulnerability Mds:": "Not affected", + "Core(s) per socket:": "32", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Not affected", + "On-line CPU(s) list:": "0-2,5-32,34-63,65,66,69-96,98-127", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "3,4,33,64,67,68,97", + "Vulnerability Meltdown:": "Not affected", + "Vulnerability Retbleed:": "Not affected", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; Retpolines, IBPB conditional, IBRS_FW, STIBP always-on, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "Not affected", + "Vulnerability Mmio stale data:": "Not affected", + "Vulnerability Tsx async abort:": "Not affected", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [ + { + "id": 0, + "name": "NVIDIA RTX A5000", + "uuid": "GPU-782cd3ea-0ea7-bd75-f8f2-54d75566f9c2", + "driver": "525.125.06", + "serial": "1324921081899", + "memory_total_MiB": 24564 + } + ], + "num_gpus": 1 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null + }, + { + "proof_id": "be7990f4-a06a-4dae-873d-4c331b6c6368", + "circuit_name": "circom-multiplier2", + "circuit_id": "01d61417-f3c8-405d-8327-8676c11b920c", + "circuit_type": "circom", + "date_created": "2024-01-15T01:44:47.933Z", + "perform_verify": false, + "status": "Ready", + "compute_time": "P0DT00H00M06.415701S", + "compute_times": { + "prove": 6.212794356048107, + "total": 6.486022163182497, + "queued": 5.792826, + "clean_up": 0.0002670474350452423, + "file_setup": 0.2612623367458582, + "save_results": 0.002615245059132576, + "generate_witness_c": 0.008822411298751831 + }, + "file_sizes": { + "proof": 705, + "total": 711, + "public": 6, + "total_gb": 7.11e-7, + "total_mb": 0.000711 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "proof_input": null, + "proof": null, + "prover_implementation": { + "name": "GPU Tachyonic", + "smbc": 6, + "smcurve": "spparkx.alt_bn128", + "smreplicate": false + }, + "public": null, + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nopl nonstop_tsc cpuid extd_apicid aperfmperf rapl pni pclmulqdq monitor ssse3 fma cx16 pcid sse4_1 sse4_2 movbe popcnt aes xsave avx f16c rdrand lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt tce topoext perfctr_core perfctr_nb bpext perfctr_llc mwaitx cpb cat_l3 cdp_l3 invpcid_single hw_pstate ssbd mba ibrs ibpb stibp vmmcall fsgsbase bmi1 avx2 smep bmi2 invpcid cqm rdt_a rdseed adx smap clflushopt clwb sha_ni xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local clzero irperf xsaveerptr rdpru wbnoinvd amd_ppin brs arat npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold v_vmsave_vmload vgif v_spec_ctrl umip pku ospke vaes vpclmulqdq rdpid overflow_recov succor smca", + "Model:": "1", + "CPU(s):": "128", + "BogoMIPS:": "5200.17", + "L2 cache:": "32 MiB (64 instances)", + "L3 cache:": "256 MiB (8 instances)", + "Stepping:": "1", + "L1d cache:": "2 MiB (64 instances)", + "L1i cache:": "2 MiB (64 instances)", + "Socket(s):": "2", + "Vendor ID:": "AuthenticAMD", + "Byte Order:": "Little Endian", + "CPU family:": "25", + "Model name:": "AMD EPYC 7513 32-Core Processor", + "CPU max MHz:": "3681.6399", + "CPU min MHz:": "1500.0000", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "48 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "AMD-V", + "Frequency boost:": "enabled", + "NUMA node0 CPU(s):": "0-31,64-95", + "NUMA node1 CPU(s):": "32-63,96-127", + "Vulnerability Mds:": "Not affected", + "Core(s) per socket:": "32", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Not affected", + "On-line CPU(s) list:": "0-2,5-32,34-63,65,66,69-96,98-127", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "3,4,33,64,67,68,97", + "Vulnerability Meltdown:": "Not affected", + "Vulnerability Retbleed:": "Not affected", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; Retpolines, IBPB conditional, IBRS_FW, STIBP always-on, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "Not affected", + "Vulnerability Mmio stale data:": "Not affected", + "Vulnerability Tsx async abort:": "Not affected", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [ + { + "id": 0, + "name": "NVIDIA RTX A5000", + "uuid": "GPU-782cd3ea-0ea7-bd75-f8f2-54d75566f9c2", + "driver": "525.125.06", + "serial": "1324921081899", + "memory_total_MiB": 24564 + } + ], + "num_gpus": 1 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null + }, + { + "proof_id": "26f07d1b-4740-4410-9319-38c99c80c474", + "circuit_name": "circom-multiplier2", + "circuit_id": "03dcdd85-9300-440b-8353-91bea904d8c5", + "circuit_type": "circom", + "date_created": "2024-01-15T01:44:45.581Z", + "perform_verify": false, + "status": "Ready", + "compute_time": "P0DT00H00M06.435592S", + "compute_times": { + "prove": 6.2201853562146425, + "total": 6.502878189086914, + "queued": 0.652189, + "clean_up": 0.00024727731943130493, + "file_setup": 0.2532728649675846, + "save_results": 0.0022235289216041565, + "generate_witness_c": 0.026703273877501488 + }, + "file_sizes": { + "proof": 708, + "total": 714, + "public": 6, + "total_gb": 7.14e-7, + "total_mb": 0.000714 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "proof_input": null, + "proof": null, + "prover_implementation": { + "name": "GPU Tachyonic", + "smbc": 6, + "smcurve": "spparkx.alt_bn128", + "smreplicate": false + }, + "public": null, + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nopl nonstop_tsc cpuid extd_apicid aperfmperf rapl pni pclmulqdq monitor ssse3 fma cx16 pcid sse4_1 sse4_2 movbe popcnt aes xsave avx f16c rdrand lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt tce topoext perfctr_core perfctr_nb bpext perfctr_llc mwaitx cpb cat_l3 cdp_l3 invpcid_single hw_pstate ssbd mba ibrs ibpb stibp vmmcall fsgsbase bmi1 avx2 smep bmi2 invpcid cqm rdt_a rdseed adx smap clflushopt clwb sha_ni xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local clzero irperf xsaveerptr rdpru wbnoinvd amd_ppin brs arat npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold v_vmsave_vmload vgif v_spec_ctrl umip pku ospke vaes vpclmulqdq rdpid overflow_recov succor smca", + "Model:": "1", + "CPU(s):": "128", + "BogoMIPS:": "5200.17", + "L2 cache:": "32 MiB (64 instances)", + "L3 cache:": "256 MiB (8 instances)", + "Stepping:": "1", + "L1d cache:": "2 MiB (64 instances)", + "L1i cache:": "2 MiB (64 instances)", + "Socket(s):": "2", + "Vendor ID:": "AuthenticAMD", + "Byte Order:": "Little Endian", + "CPU family:": "25", + "Model name:": "AMD EPYC 7513 32-Core Processor", + "CPU max MHz:": "3681.6399", + "CPU min MHz:": "1500.0000", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "48 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "AMD-V", + "Frequency boost:": "enabled", + "NUMA node0 CPU(s):": "0-31,64-95", + "NUMA node1 CPU(s):": "32-63,96-127", + "Vulnerability Mds:": "Not affected", + "Core(s) per socket:": "32", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Not affected", + "On-line CPU(s) list:": "0-2,5-32,34-63,65,66,69-96,98-127", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "3,4,33,64,67,68,97", + "Vulnerability Meltdown:": "Not affected", + "Vulnerability Retbleed:": "Not affected", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; Retpolines, IBPB conditional, IBRS_FW, STIBP always-on, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "Not affected", + "Vulnerability Mmio stale data:": "Not affected", + "Vulnerability Tsx async abort:": "Not affected", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [ + { + "id": 0, + "name": "NVIDIA RTX A5000", + "uuid": "GPU-782cd3ea-0ea7-bd75-f8f2-54d75566f9c2", + "driver": "525.125.06", + "serial": "1324921081899", + "memory_total_MiB": 24564 + } + ], + "num_gpus": 1 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null + }, + { + "proof_id": "f0e9a8ef-a9f7-45a1-9d24-25822ff56d47", + "circuit_name": "circom-multiplier2", + "circuit_id": "a7c1a9a9-2df3-4f76-9be0-1bb8456c22db", + "circuit_type": "circom", + "date_created": "2024-01-15T01:44:29.960Z", + "perform_verify": false, + "status": "Ready", + "compute_time": "P0DT00H00M06.484678S", + "compute_times": { + "prove": 6.229190753772855, + "total": 6.550728781148791, + "queued": 0.657459, + "clean_up": 0.0002836957573890686, + "file_setup": 0.2656614538282156, + "save_results": 0.0025900565087795258, + "generate_witness_c": 0.052704716101288795 + }, + "file_sizes": { + "proof": 710, + "total": 716, + "public": 6, + "total_gb": 7.16e-7, + "total_mb": 0.000716 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "proof_input": null, + "proof": null, + "prover_implementation": { + "name": "GPU Tachyonic", + "smbc": 6, + "smcurve": "spparkx.alt_bn128", + "smreplicate": false + }, + "public": null, + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nopl nonstop_tsc cpuid extd_apicid aperfmperf rapl pni pclmulqdq monitor ssse3 fma cx16 pcid sse4_1 sse4_2 movbe popcnt aes xsave avx f16c rdrand lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt tce topoext perfctr_core perfctr_nb bpext perfctr_llc mwaitx cpb cat_l3 cdp_l3 invpcid_single hw_pstate ssbd mba ibrs ibpb stibp vmmcall fsgsbase bmi1 avx2 smep bmi2 invpcid cqm rdt_a rdseed adx smap clflushopt clwb sha_ni xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local clzero irperf xsaveerptr rdpru wbnoinvd amd_ppin brs arat npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold v_vmsave_vmload vgif v_spec_ctrl umip pku ospke vaes vpclmulqdq rdpid overflow_recov succor smca", + "Model:": "1", + "CPU(s):": "128", + "BogoMIPS:": "5200.17", + "L2 cache:": "32 MiB (64 instances)", + "L3 cache:": "256 MiB (8 instances)", + "Stepping:": "1", + "L1d cache:": "2 MiB (64 instances)", + "L1i cache:": "2 MiB (64 instances)", + "Socket(s):": "2", + "Vendor ID:": "AuthenticAMD", + "Byte Order:": "Little Endian", + "CPU family:": "25", + "Model name:": "AMD EPYC 7513 32-Core Processor", + "CPU max MHz:": "3681.6399", + "CPU min MHz:": "1500.0000", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "48 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "AMD-V", + "Frequency boost:": "enabled", + "NUMA node0 CPU(s):": "0-31,64-95", + "NUMA node1 CPU(s):": "32-63,96-127", + "Vulnerability Mds:": "Not affected", + "Core(s) per socket:": "32", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Not affected", + "On-line CPU(s) list:": "0-2,5-32,34-63,65,66,69-96,98-127", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "3,4,33,64,67,68,97", + "Vulnerability Meltdown:": "Not affected", + "Vulnerability Retbleed:": "Not affected", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; Retpolines, IBPB conditional, IBRS_FW, STIBP always-on, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "Not affected", + "Vulnerability Mmio stale data:": "Not affected", + "Vulnerability Tsx async abort:": "Not affected", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [ + { + "id": 0, + "name": "NVIDIA RTX A5000", + "uuid": "GPU-782cd3ea-0ea7-bd75-f8f2-54d75566f9c2", + "driver": "525.125.06", + "serial": "1324921081899", + "memory_total_MiB": 24564 + } + ], + "num_gpus": 1 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null + }, + { + "proof_id": "f8406ce7-d14a-4fa6-9677-1d57449c0e92", + "circuit_name": "circom-multiplier2", + "circuit_id": "723f695f-ceca-435e-9423-fa9623b26962", + "circuit_type": "circom", + "date_created": "2024-01-15T01:28:35.809Z", + "perform_verify": false, + "status": "Ready", + "compute_time": "P0DT00H00M06.078477S", + "compute_times": { + "prove": 5.902009887620807, + "total": 6.183570355176926, + "queued": 6.122612, + "clean_up": 0.0002631358802318573, + "file_setup": 0.26931122317910194, + "save_results": 0.0026443954557180405, + "generate_witness_c": 0.009012777358293533 + }, + "file_sizes": { + "proof": 708, + "total": 714, + "public": 6, + "total_gb": 7.14e-7, + "total_mb": 0.000714 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "proof_input": null, + "proof": null, + "prover_implementation": { + "name": "GPU Tachyonic", + "smbc": 6, + "smcurve": "spparkx.alt_bn128", + "smreplicate": false + }, + "public": null, + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nopl nonstop_tsc cpuid extd_apicid aperfmperf rapl pni pclmulqdq monitor ssse3 fma cx16 pcid sse4_1 sse4_2 movbe popcnt aes xsave avx f16c rdrand lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt tce topoext perfctr_core perfctr_nb bpext perfctr_llc mwaitx cpb cat_l3 cdp_l3 invpcid_single hw_pstate ssbd mba ibrs ibpb stibp vmmcall fsgsbase bmi1 avx2 smep bmi2 invpcid cqm rdt_a rdseed adx smap clflushopt clwb sha_ni xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local clzero irperf xsaveerptr rdpru wbnoinvd amd_ppin brs arat npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold v_vmsave_vmload vgif v_spec_ctrl umip pku ospke vaes vpclmulqdq rdpid overflow_recov succor smca", + "Model:": "1", + "CPU(s):": "128", + "BogoMIPS:": "5199.98", + "L2 cache:": "32 MiB (64 instances)", + "L3 cache:": "256 MiB (8 instances)", + "Stepping:": "1", + "L1d cache:": "2 MiB (64 instances)", + "L1i cache:": "2 MiB (64 instances)", + "Socket(s):": "2", + "Vendor ID:": "AuthenticAMD", + "Byte Order:": "Little Endian", + "CPU family:": "25", + "Model name:": "AMD EPYC 7513 32-Core Processor", + "CPU max MHz:": "3681.6399", + "CPU min MHz:": "1500.0000", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "48 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "AMD-V", + "Frequency boost:": "enabled", + "NUMA node0 CPU(s):": "0-31,64-95", + "NUMA node1 CPU(s):": "32-63,96-127", + "Vulnerability Mds:": "Not affected", + "Core(s) per socket:": "32", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Not affected", + "On-line CPU(s) list:": "0,4-32,34-63,69-96,98-127", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "1-3,33,64-68,97", + "Vulnerability Meltdown:": "Not affected", + "Vulnerability Retbleed:": "Not affected", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; Retpolines, IBPB conditional, IBRS_FW, STIBP always-on, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "Not affected", + "Vulnerability Mmio stale data:": "Not affected", + "Vulnerability Tsx async abort:": "Not affected", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [ + { + "id": 0, + "name": "NVIDIA RTX A5000", + "uuid": "GPU-3ae041c5-a9ec-129a-cbf6-33b374bc92c0", + "driver": "525.125.06", + "serial": "1325121129330", + "memory_total_MiB": 24564 + } + ], + "num_gpus": 1 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null + }, + { + "proof_id": "bc95c37e-6335-4962-a45e-ce0e92856220", + "circuit_name": "circom-multiplier2", + "circuit_id": "1f4e0b8e-d4a1-40fa-b32b-a8d263ca516f", + "circuit_type": "circom", + "date_created": "2024-01-15T01:28:33.921Z", + "perform_verify": false, + "status": "Ready", + "compute_time": "P0DT00H00M06.160198S", + "compute_times": { + "prove": 5.963096780702472, + "total": 6.232641618698835, + "queued": 0.650062, + "clean_up": 0.00031645968556404114, + "file_setup": 0.24531847052276134, + "save_results": 0.003001151606440544, + "generate_witness_c": 0.020530829206109047 + }, + "file_sizes": { + "proof": 708, + "total": 714, + "public": 6, + "total_gb": 7.14e-7, + "total_mb": 0.000714 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "proof_input": null, + "proof": null, + "prover_implementation": { + "name": "GPU Tachyonic", + "smbc": 6, + "smcurve": "spparkx.alt_bn128", + "smreplicate": false + }, + "public": null, + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nopl nonstop_tsc cpuid extd_apicid aperfmperf rapl pni pclmulqdq monitor ssse3 fma cx16 pcid sse4_1 sse4_2 movbe popcnt aes xsave avx f16c rdrand lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt tce topoext perfctr_core perfctr_nb bpext perfctr_llc mwaitx cpb cat_l3 cdp_l3 invpcid_single hw_pstate ssbd mba ibrs ibpb stibp vmmcall fsgsbase bmi1 avx2 smep bmi2 invpcid cqm rdt_a rdseed adx smap clflushopt clwb sha_ni xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local clzero irperf xsaveerptr rdpru wbnoinvd amd_ppin brs arat npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold v_vmsave_vmload vgif v_spec_ctrl umip pku ospke vaes vpclmulqdq rdpid overflow_recov succor smca", + "Model:": "1", + "CPU(s):": "128", + "BogoMIPS:": "5199.98", + "L2 cache:": "32 MiB (64 instances)", + "L3 cache:": "256 MiB (8 instances)", + "Stepping:": "1", + "L1d cache:": "2 MiB (64 instances)", + "L1i cache:": "2 MiB (64 instances)", + "Socket(s):": "2", + "Vendor ID:": "AuthenticAMD", + "Byte Order:": "Little Endian", + "CPU family:": "25", + "Model name:": "AMD EPYC 7513 32-Core Processor", + "CPU max MHz:": "3681.6399", + "CPU min MHz:": "1500.0000", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "48 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "AMD-V", + "Frequency boost:": "enabled", + "NUMA node0 CPU(s):": "0-31,64-95", + "NUMA node1 CPU(s):": "32-63,96-127", + "Vulnerability Mds:": "Not affected", + "Core(s) per socket:": "32", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Not affected", + "On-line CPU(s) list:": "0,4-32,34-63,69-96,98-127", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "1-3,33,64-68,97", + "Vulnerability Meltdown:": "Not affected", + "Vulnerability Retbleed:": "Not affected", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; Retpolines, IBPB conditional, IBRS_FW, STIBP always-on, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "Not affected", + "Vulnerability Mmio stale data:": "Not affected", + "Vulnerability Tsx async abort:": "Not affected", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [ + { + "id": 0, + "name": "NVIDIA RTX A5000", + "uuid": "GPU-3ae041c5-a9ec-129a-cbf6-33b374bc92c0", + "driver": "525.125.06", + "serial": "1325121129330", + "memory_total_MiB": 24564 + } + ], + "num_gpus": 1 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null + }, + { + "proof_id": "92e2e996-b3cf-465f-a4c0-978a5566287d", + "circuit_name": "circom-multiplier2", + "circuit_id": "36ed7747-01de-4272-bd8e-e28802d5c668", + "circuit_type": "circom", + "date_created": "2024-01-15T01:25:52.815Z", + "perform_verify": false, + "status": "Ready", + "compute_time": "P0DT00H00M06.175574S", + "compute_times": { + "prove": 5.9231167789548635, + "total": 6.24663576297462, + "queued": 0.698281, + "clean_up": 0.0002771075814962387, + "file_setup": 0.29058355651795864, + "save_results": 0.002341846004128456, + "generate_witness_c": 0.029908066615462303 + }, + "file_sizes": { + "proof": 707, + "total": 713, + "public": 6, + "total_gb": 7.13e-7, + "total_mb": 0.000713 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "proof_input": null, + "proof": null, + "prover_implementation": { + "name": "GPU Tachyonic", + "smbc": 6, + "smcurve": "spparkx.alt_bn128", + "smreplicate": false + }, + "public": null, + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nopl nonstop_tsc cpuid extd_apicid aperfmperf rapl pni pclmulqdq monitor ssse3 fma cx16 pcid sse4_1 sse4_2 movbe popcnt aes xsave avx f16c rdrand lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt tce topoext perfctr_core perfctr_nb bpext perfctr_llc mwaitx cpb cat_l3 cdp_l3 invpcid_single hw_pstate ssbd mba ibrs ibpb stibp vmmcall fsgsbase bmi1 avx2 smep bmi2 invpcid cqm rdt_a rdseed adx smap clflushopt clwb sha_ni xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local clzero irperf xsaveerptr rdpru wbnoinvd amd_ppin brs arat npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold v_vmsave_vmload vgif v_spec_ctrl umip pku ospke vaes vpclmulqdq rdpid overflow_recov succor smca", + "Model:": "1", + "CPU(s):": "128", + "BogoMIPS:": "5199.98", + "L2 cache:": "32 MiB (64 instances)", + "L3 cache:": "256 MiB (8 instances)", + "Stepping:": "1", + "L1d cache:": "2 MiB (64 instances)", + "L1i cache:": "2 MiB (64 instances)", + "Socket(s):": "2", + "Vendor ID:": "AuthenticAMD", + "Byte Order:": "Little Endian", + "CPU family:": "25", + "Model name:": "AMD EPYC 7513 32-Core Processor", + "CPU max MHz:": "3681.6399", + "CPU min MHz:": "1500.0000", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "48 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "AMD-V", + "Frequency boost:": "enabled", + "NUMA node0 CPU(s):": "0-31,64-95", + "NUMA node1 CPU(s):": "32-63,96-127", + "Vulnerability Mds:": "Not affected", + "Core(s) per socket:": "32", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Not affected", + "On-line CPU(s) list:": "0,4-32,34-63,69-96,98-127", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "1-3,33,64-68,97", + "Vulnerability Meltdown:": "Not affected", + "Vulnerability Retbleed:": "Not affected", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; Retpolines, IBPB conditional, IBRS_FW, STIBP always-on, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "Not affected", + "Vulnerability Mmio stale data:": "Not affected", + "Vulnerability Tsx async abort:": "Not affected", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [ + { + "id": 0, + "name": "NVIDIA RTX A5000", + "uuid": "GPU-3ae041c5-a9ec-129a-cbf6-33b374bc92c0", + "driver": "525.125.06", + "serial": "1325121129330", + "memory_total_MiB": 24564 + } + ], + "num_gpus": 1 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null + }, + { + "proof_id": "82de6aa2-4108-43aa-85f0-0bc9c8e6fb8e", + "circuit_name": "circom-multiplier2", + "circuit_id": "eb7be2ed-0d7e-4036-a5dc-3b36b0d9907c", + "circuit_type": "circom", + "date_created": "2024-01-15T01:24:19.052Z", + "perform_verify": false, + "status": "Ready", + "compute_time": "P0DT00H00M06.115018S", + "compute_times": { + "prove": 5.91022140905261, + "total": 6.194757051765919, + "queued": 0.684503, + "clean_up": 0.00032767653465270996, + "file_setup": 0.2622530199587345, + "save_results": 0.003049323335289955, + "generate_witness_c": 0.018631482496857643 + }, + "file_sizes": { + "proof": 707, + "total": 713, + "public": 6, + "total_gb": 7.13e-7, + "total_mb": 0.000713 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "proof_input": null, + "proof": null, + "prover_implementation": { + "name": "GPU Tachyonic", + "smbc": 6, + "smcurve": "spparkx.alt_bn128", + "smreplicate": false + }, + "public": null, + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nopl nonstop_tsc cpuid extd_apicid aperfmperf rapl pni pclmulqdq monitor ssse3 fma cx16 pcid sse4_1 sse4_2 movbe popcnt aes xsave avx f16c rdrand lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt tce topoext perfctr_core perfctr_nb bpext perfctr_llc mwaitx cpb cat_l3 cdp_l3 invpcid_single hw_pstate ssbd mba ibrs ibpb stibp vmmcall fsgsbase bmi1 avx2 smep bmi2 invpcid cqm rdt_a rdseed adx smap clflushopt clwb sha_ni xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local clzero irperf xsaveerptr rdpru wbnoinvd amd_ppin brs arat npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold v_vmsave_vmload vgif v_spec_ctrl umip pku ospke vaes vpclmulqdq rdpid overflow_recov succor smca", + "Model:": "1", + "CPU(s):": "128", + "BogoMIPS:": "5199.98", + "L2 cache:": "32 MiB (64 instances)", + "L3 cache:": "256 MiB (8 instances)", + "Stepping:": "1", + "L1d cache:": "2 MiB (64 instances)", + "L1i cache:": "2 MiB (64 instances)", + "Socket(s):": "2", + "Vendor ID:": "AuthenticAMD", + "Byte Order:": "Little Endian", + "CPU family:": "25", + "Model name:": "AMD EPYC 7513 32-Core Processor", + "CPU max MHz:": "3681.6399", + "CPU min MHz:": "1500.0000", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "48 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "AMD-V", + "Frequency boost:": "enabled", + "NUMA node0 CPU(s):": "0-31,64-95", + "NUMA node1 CPU(s):": "32-63,96-127", + "Vulnerability Mds:": "Not affected", + "Core(s) per socket:": "32", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Not affected", + "On-line CPU(s) list:": "0,4-32,34-63,69-96,98-127", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "1-3,33,64-68,97", + "Vulnerability Meltdown:": "Not affected", + "Vulnerability Retbleed:": "Not affected", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; Retpolines, IBPB conditional, IBRS_FW, STIBP always-on, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "Not affected", + "Vulnerability Mmio stale data:": "Not affected", + "Vulnerability Tsx async abort:": "Not affected", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [ + { + "id": 0, + "name": "NVIDIA RTX A5000", + "uuid": "GPU-3ae041c5-a9ec-129a-cbf6-33b374bc92c0", + "driver": "525.125.06", + "serial": "1325121129330", + "memory_total_MiB": 24564 + } + ], + "num_gpus": 1 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null + }, + { + "proof_id": "250bec19-3e55-44aa-8259-e0c16f81740a", + "circuit_name": "circom-multiplier2", + "circuit_id": "11e78b06-44fb-44b4-b85f-d681e677482c", + "circuit_type": "circom", + "date_created": "2024-01-15T01:21:13.615Z", + "perform_verify": false, + "status": "Ready", + "compute_time": "P0DT00H00M06.117480S", + "compute_times": { + "prove": 5.914364781230688, + "total": 6.191053604707122, + "queued": 15.514631, + "clean_up": 0.00021071918308734894, + "file_setup": 0.24732953310012817, + "save_results": 0.0019527468830347061, + "generate_witness_c": 0.026822445914149284 + }, + "file_sizes": { + "proof": 707, + "total": 713, + "public": 6, + "total_gb": 7.13e-7, + "total_mb": 0.000713 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "proof_input": null, + "proof": null, + "prover_implementation": { + "name": "GPU Tachyonic", + "smbc": 6, + "smcurve": "spparkx.alt_bn128", + "smreplicate": false + }, + "public": null, + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nopl nonstop_tsc cpuid extd_apicid aperfmperf rapl pni pclmulqdq monitor ssse3 fma cx16 pcid sse4_1 sse4_2 movbe popcnt aes xsave avx f16c rdrand lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt tce topoext perfctr_core perfctr_nb bpext perfctr_llc mwaitx cpb cat_l3 cdp_l3 invpcid_single hw_pstate ssbd mba ibrs ibpb stibp vmmcall fsgsbase bmi1 avx2 smep bmi2 invpcid cqm rdt_a rdseed adx smap clflushopt clwb sha_ni xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local clzero irperf xsaveerptr rdpru wbnoinvd amd_ppin brs arat npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold v_vmsave_vmload vgif v_spec_ctrl umip pku ospke vaes vpclmulqdq rdpid overflow_recov succor smca", + "Model:": "1", + "CPU(s):": "128", + "BogoMIPS:": "5199.98", + "L2 cache:": "32 MiB (64 instances)", + "L3 cache:": "256 MiB (8 instances)", + "Stepping:": "1", + "L1d cache:": "2 MiB (64 instances)", + "L1i cache:": "2 MiB (64 instances)", + "Socket(s):": "2", + "Vendor ID:": "AuthenticAMD", + "Byte Order:": "Little Endian", + "CPU family:": "25", + "Model name:": "AMD EPYC 7513 32-Core Processor", + "CPU max MHz:": "3681.6399", + "CPU min MHz:": "1500.0000", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "48 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "AMD-V", + "Frequency boost:": "enabled", + "NUMA node0 CPU(s):": "0-31,64-95", + "NUMA node1 CPU(s):": "32-63,96-127", + "Vulnerability Mds:": "Not affected", + "Core(s) per socket:": "32", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Not affected", + "On-line CPU(s) list:": "0,4-32,34-63,69-96,98-127", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "1-3,33,64-68,97", + "Vulnerability Meltdown:": "Not affected", + "Vulnerability Retbleed:": "Not affected", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; Retpolines, IBPB conditional, IBRS_FW, STIBP always-on, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "Not affected", + "Vulnerability Mmio stale data:": "Not affected", + "Vulnerability Tsx async abort:": "Not affected", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [ + { + "id": 0, + "name": "NVIDIA RTX A5000", + "uuid": "GPU-3ae041c5-a9ec-129a-cbf6-33b374bc92c0", + "driver": "525.125.06", + "serial": "1325121129330", + "memory_total_MiB": 24564 + } + ], + "num_gpus": 1 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null + } + ], + "rawHeaders": [ + "Content-Length", + "112612", + "Content-Type", + "application/json; charset=utf-8", + "Date", + "Mon, 15 Jan 2024 13:31:26 GMT", + "Referrer-Policy", + "same-origin", + "Server", + "gunicorn", + "Vary", + "Cookie, origin", + "X-Content-Type-Options", + "nosniff", + "X-Frame-Options", + "SAMEORIGIN" + ], + "responseIsBinary": false + }, + { + "scope": "https://sindri.app:443", + "method": "GET", "path": "/robots.txt", "body": "", "status": 200, - "response": "#########################\n## ______ ______ ##\n## |__ / |/ / _ \\ ##\n## / /| ' /| |_) | ##\n## / /_| . \\| __/ ##\n## /____|_|\\_\\_| ##\n## ##\n#########################\n\nUser-agent: *\nDisallow: /admin/\nDisallow: /api/\n\nSitemap: https://sindri.app/docs/sitemap.xml\n", + "response": [ + "1f8b08000000000002ff758ec10a03210c44ef7ec58087d2423777cffd83d29b20d2955670776515ba877c7c550ab6949d43c2e42543a4dc9190128069ea1df810ae8ec0540a0c7427754c8c432d6c8ee04e0a308c019a6b22f51baae96c581b5d1680efb43f35b2f7b5b825b79eedc3cd59e1242e3ed910969702d971f233fd4ca22721ae3ebbc9468567ce3129a2e4e771f5838d91c6e59e8a6f0bc33605f106f0784c462f010000" + ], + "rawHeaders": [ + "Access-Control-Allow-Origin", + "*", + "Cache-Control", + "max-age=60, public", + "Content-Encoding", + "gzip", + "Content-Length", + "169", + "Content-Type", + "text/plain; charset=\"utf-8\"", + "Date", + "Mon, 15 Jan 2024 13:31:27 GMT", + "Etag", + "\"659ff8b9-12f\"", + "Last-Modified", + "Thu, 11 Jan 2024 14:18:33 GMT", + "Server", + "gunicorn", + "Vary", + "Accept-Encoding" + ], + "responseIsBinary": false + }, + { + "scope": "https://sindri.app:443", + "method": "GET", + "path": "/api/v1/proof/list?include_proof_input=false&include_proof=false&include_public=false&include_verification_key=false", + "body": "", + "status": 200, + "response": [ + { + "proof_id": "a0cd0c31-178d-40ab-befd-56240cfac47b", + "circuit_name": "circom-multiplier2", + "circuit_id": "ddd1b9a9-83e6-41d1-8936-3bff88aa6921", + "circuit_type": "circom", + "date_created": "2024-01-15T13:29:36.311Z", + "perform_verify": false, + "status": "Ready", + "compute_time": "P0DT00H00M02.092256S", + "compute_times": { + "prove": 0.36259699426591396, + "total": 2.1656957883387804, + "queued": 5.830407, + "clean_up": 0.0003967471420764923, + "file_setup": 0.6623526718467474, + "save_results": 0.18246298655867577, + "generate_witness_c": 0.9574985150247812 + }, + "file_sizes": { + "proof": 705, + "total": 711, + "public": 6, + "total_gb": 7.11e-7, + "total_mb": 0.000711 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "proof_input": null, + "proof": null, + "prover_implementation": { + "name": "GPU Tachyonic", + "smbc": 6, + "smcurve": "spparkx.alt_bn128", + "smreplicate": false + }, + "public": null, + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nopl nonstop_tsc cpuid extd_apicid aperfmperf rapl pni pclmulqdq monitor ssse3 fma cx16 pcid sse4_1 sse4_2 movbe popcnt aes xsave avx f16c rdrand lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt tce topoext perfctr_core perfctr_nb bpext perfctr_llc mwaitx cpb cat_l3 cdp_l3 invpcid_single hw_pstate ssbd mba ibrs ibpb stibp vmmcall fsgsbase bmi1 avx2 smep bmi2 invpcid cqm rdt_a rdseed adx smap clflushopt clwb sha_ni xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local clzero irperf xsaveerptr rdpru wbnoinvd amd_ppin brs arat npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold v_vmsave_vmload vgif v_spec_ctrl umip pku ospke vaes vpclmulqdq rdpid overflow_recov succor smca", + "Model:": "1", + "CPU(s):": "128", + "BogoMIPS:": "5190.16", + "L2 cache:": "32 MiB (64 instances)", + "L3 cache:": "256 MiB (8 instances)", + "Stepping:": "1", + "L1d cache:": "2 MiB (64 instances)", + "L1i cache:": "2 MiB (64 instances)", + "Socket(s):": "2", + "Vendor ID:": "AuthenticAMD", + "Byte Order:": "Little Endian", + "CPU family:": "25", + "Model name:": "AMD EPYC 7513 32-Core Processor", + "CPU max MHz:": "3681.6399", + "CPU min MHz:": "1500.0000", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "48 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "AMD-V", + "Frequency boost:": "enabled", + "NUMA node0 CPU(s):": "0-31,64-95", + "NUMA node1 CPU(s):": "32-63,96-127", + "Vulnerability Mds:": "Not affected", + "Core(s) per socket:": "32", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Not affected", + "On-line CPU(s) list:": "0,2-4,6-31,35-64,66-68,70-95,99-127", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "1,5,32-34,65,69,96-98", + "Vulnerability Meltdown:": "Not affected", + "Vulnerability Retbleed:": "Not affected", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; Retpolines, IBPB conditional, IBRS_FW, STIBP always-on, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "Not affected", + "Vulnerability Mmio stale data:": "Not affected", + "Vulnerability Tsx async abort:": "Not affected", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [ + { + "id": 0, + "name": "NVIDIA RTX A6000", + "uuid": "GPU-bfa26f0f-c563-4d7b-2157-ca283ea42f01", + "driver": "525.125.06", + "serial": "1325121022674", + "memory_total_MiB": 49140 + } + ], + "num_gpus": 1 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null + }, + { + "proof_id": "7a40011c-8526-4c26-a0ac-d9666885eaf0", + "circuit_name": "circom-multiplier2", + "circuit_id": "96444cdd-027c-4c3f-a682-4e72d16bf3a5", + "circuit_type": "circom", + "date_created": "2024-01-15T13:29:34.880Z", + "perform_verify": false, + "status": "Ready", + "compute_time": "P0DT00H00M03.002676S", + "compute_times": { + "prove": 0.40854700468480587, + "total": 3.068965345621109, + "queued": 2.266619, + "clean_up": 0.00030806101858615875, + "file_setup": 0.7846233639866114, + "save_results": 0.18261023424565792, + "generate_witness_c": 1.6924956049770117 + }, + "file_sizes": { + "proof": 706, + "total": 712, + "public": 6, + "total_gb": 7.12e-7, + "total_mb": 0.000712 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "proof_input": null, + "proof": null, + "prover_implementation": { + "name": "GPU Tachyonic", + "smbc": 6, + "smcurve": "spparkx.alt_bn128", + "smreplicate": false + }, + "public": null, + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nopl nonstop_tsc cpuid extd_apicid aperfmperf rapl pni pclmulqdq monitor ssse3 fma cx16 pcid sse4_1 sse4_2 movbe popcnt aes xsave avx f16c rdrand lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt tce topoext perfctr_core perfctr_nb bpext perfctr_llc mwaitx cpb cat_l3 cdp_l3 invpcid_single hw_pstate ssbd mba ibrs ibpb stibp vmmcall fsgsbase bmi1 avx2 smep bmi2 invpcid cqm rdt_a rdseed adx smap clflushopt clwb sha_ni xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local clzero irperf xsaveerptr rdpru wbnoinvd amd_ppin brs arat npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold v_vmsave_vmload vgif v_spec_ctrl umip pku ospke vaes vpclmulqdq rdpid overflow_recov succor smca", + "Model:": "1", + "CPU(s):": "128", + "BogoMIPS:": "5190.16", + "L2 cache:": "32 MiB (64 instances)", + "L3 cache:": "256 MiB (8 instances)", + "Stepping:": "1", + "L1d cache:": "2 MiB (64 instances)", + "L1i cache:": "2 MiB (64 instances)", + "Socket(s):": "2", + "Vendor ID:": "AuthenticAMD", + "Byte Order:": "Little Endian", + "CPU family:": "25", + "Model name:": "AMD EPYC 7513 32-Core Processor", + "CPU max MHz:": "3681.6399", + "CPU min MHz:": "1500.0000", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "48 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "AMD-V", + "Frequency boost:": "enabled", + "NUMA node0 CPU(s):": "0-31,64-95", + "NUMA node1 CPU(s):": "32-63,96-127", + "Vulnerability Mds:": "Not affected", + "Core(s) per socket:": "32", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Not affected", + "On-line CPU(s) list:": "0,2-4,6-31,35-64,66-68,70-95,99-127", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "1,5,32-34,65,69,96-98", + "Vulnerability Meltdown:": "Not affected", + "Vulnerability Retbleed:": "Not affected", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; Retpolines, IBPB conditional, IBRS_FW, STIBP always-on, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "Not affected", + "Vulnerability Mmio stale data:": "Not affected", + "Vulnerability Tsx async abort:": "Not affected", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [ + { + "id": 0, + "name": "NVIDIA RTX A6000", + "uuid": "GPU-bfa26f0f-c563-4d7b-2157-ca283ea42f01", + "driver": "525.125.06", + "serial": "1325121022674", + "memory_total_MiB": 49140 + } + ], + "num_gpus": 1 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null + }, + { + "proof_id": "c3ba6384-7192-4ae6-8b0e-98ce27631011", + "circuit_name": "circom-multiplier2", + "circuit_id": "7ef187a6-8c98-453b-8a71-a9eaaecc0e34", + "circuit_type": "circom", + "date_created": "2024-01-15T13:29:30.819Z", + "perform_verify": false, + "status": "Ready", + "compute_time": "P0DT00H00M03.202003S", + "compute_times": { + "prove": 0.46431767754256725, + "total": 3.2886892426759005, + "queued": 1.201985, + "clean_up": 0.0002929028123617172, + "file_setup": 0.8507254235446453, + "save_results": 0.18203313648700714, + "generate_witness_c": 1.7910168208181858 + }, + "file_sizes": { + "proof": 709, + "total": 715, + "public": 6, + "total_gb": 7.15e-7, + "total_mb": 0.000715 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "proof_input": null, + "proof": null, + "prover_implementation": { + "name": "GPU Tachyonic", + "smbc": 6, + "smcurve": "spparkx.alt_bn128", + "smreplicate": false + }, + "public": null, + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nopl nonstop_tsc cpuid extd_apicid aperfmperf rapl pni pclmulqdq monitor ssse3 fma cx16 pcid sse4_1 sse4_2 movbe popcnt aes xsave avx f16c rdrand lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt tce topoext perfctr_core perfctr_nb bpext perfctr_llc mwaitx cpb cat_l3 cdp_l3 invpcid_single hw_pstate ssbd mba ibrs ibpb stibp vmmcall fsgsbase bmi1 avx2 smep bmi2 invpcid cqm rdt_a rdseed adx smap clflushopt clwb sha_ni xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local clzero irperf xsaveerptr rdpru wbnoinvd amd_ppin brs arat npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold v_vmsave_vmload vgif v_spec_ctrl umip pku ospke vaes vpclmulqdq rdpid overflow_recov succor smca", + "Model:": "1", + "CPU(s):": "128", + "BogoMIPS:": "5190.16", + "L2 cache:": "32 MiB (64 instances)", + "L3 cache:": "256 MiB (8 instances)", + "Stepping:": "1", + "L1d cache:": "2 MiB (64 instances)", + "L1i cache:": "2 MiB (64 instances)", + "Socket(s):": "2", + "Vendor ID:": "AuthenticAMD", + "Byte Order:": "Little Endian", + "CPU family:": "25", + "Model name:": "AMD EPYC 7513 32-Core Processor", + "CPU max MHz:": "3681.6399", + "CPU min MHz:": "1500.0000", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "48 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "AMD-V", + "Frequency boost:": "enabled", + "NUMA node0 CPU(s):": "0-31,64-95", + "NUMA node1 CPU(s):": "32-63,96-127", + "Vulnerability Mds:": "Not affected", + "Core(s) per socket:": "32", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Not affected", + "On-line CPU(s) list:": "0,2-4,6-31,35-64,66-68,70-95,99-127", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "1,5,32-34,65,69,96-98", + "Vulnerability Meltdown:": "Not affected", + "Vulnerability Retbleed:": "Not affected", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; Retpolines, IBPB conditional, IBRS_FW, STIBP always-on, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "Not affected", + "Vulnerability Mmio stale data:": "Not affected", + "Vulnerability Tsx async abort:": "Not affected", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [ + { + "id": 0, + "name": "NVIDIA RTX A6000", + "uuid": "GPU-bfa26f0f-c563-4d7b-2157-ca283ea42f01", + "driver": "525.125.06", + "serial": "1325121022674", + "memory_total_MiB": 49140 + } + ], + "num_gpus": 1 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null + }, + { + "proof_id": "ab24f58c-fd8c-4d6b-afb9-6fe8bc786b4a", + "circuit_name": "circom-multiplier2", + "circuit_id": "24294db3-7afa-418b-bf0d-1243f5886a87", + "circuit_type": "circom", + "date_created": "2024-01-15T13:29:09.850Z", + "perform_verify": false, + "status": "Ready", + "compute_time": "P0DT00H00M03.165555S", + "compute_times": { + "prove": 0.39277893863618374, + "total": 3.2604714408516884, + "queued": 1.166733, + "clean_up": 0.000250350683927536, + "file_setup": 0.9157394412904978, + "save_results": 0.1821883488446474, + "generate_witness_c": 1.7691551242023706 + }, + "file_sizes": { + "proof": 708, + "total": 714, + "public": 6, + "total_gb": 7.14e-7, + "total_mb": 0.000714 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "proof_input": null, + "proof": null, + "prover_implementation": { + "name": "GPU Tachyonic", + "smbc": 6, + "smcurve": "spparkx.alt_bn128", + "smreplicate": false + }, + "public": null, + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nopl nonstop_tsc cpuid extd_apicid aperfmperf rapl pni pclmulqdq monitor ssse3 fma cx16 pcid sse4_1 sse4_2 movbe popcnt aes xsave avx f16c rdrand lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt tce topoext perfctr_core perfctr_nb bpext perfctr_llc mwaitx cpb cat_l3 cdp_l3 invpcid_single hw_pstate ssbd mba ibrs ibpb stibp vmmcall fsgsbase bmi1 avx2 smep bmi2 invpcid cqm rdt_a rdseed adx smap clflushopt clwb sha_ni xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local clzero irperf xsaveerptr rdpru wbnoinvd amd_ppin brs arat npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold v_vmsave_vmload vgif v_spec_ctrl umip pku ospke vaes vpclmulqdq rdpid overflow_recov succor smca", + "Model:": "1", + "CPU(s):": "128", + "BogoMIPS:": "5190.16", + "L2 cache:": "32 MiB (64 instances)", + "L3 cache:": "256 MiB (8 instances)", + "Stepping:": "1", + "L1d cache:": "2 MiB (64 instances)", + "L1i cache:": "2 MiB (64 instances)", + "Socket(s):": "2", + "Vendor ID:": "AuthenticAMD", + "Byte Order:": "Little Endian", + "CPU family:": "25", + "Model name:": "AMD EPYC 7513 32-Core Processor", + "CPU max MHz:": "3681.6399", + "CPU min MHz:": "1500.0000", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "48 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "AMD-V", + "Frequency boost:": "enabled", + "NUMA node0 CPU(s):": "0-31,64-95", + "NUMA node1 CPU(s):": "32-63,96-127", + "Vulnerability Mds:": "Not affected", + "Core(s) per socket:": "32", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Not affected", + "On-line CPU(s) list:": "0,2-4,6-31,35-64,66-68,70-95,99-127", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "1,5,32-34,65,69,96-98", + "Vulnerability Meltdown:": "Not affected", + "Vulnerability Retbleed:": "Not affected", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; Retpolines, IBPB conditional, IBRS_FW, STIBP always-on, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "Not affected", + "Vulnerability Mmio stale data:": "Not affected", + "Vulnerability Tsx async abort:": "Not affected", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [ + { + "id": 0, + "name": "NVIDIA RTX A6000", + "uuid": "GPU-bfa26f0f-c563-4d7b-2157-ca283ea42f01", + "driver": "525.125.06", + "serial": "1325121022674", + "memory_total_MiB": 49140 + } + ], + "num_gpus": 1 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null + }, + { + "proof_id": "3648dc8e-815c-4afa-9a55-d8ef94c94720", + "circuit_name": "circom-multiplier2", + "circuit_id": "dc8d2ea3-558f-464b-88ef-4bfa06fa618e", + "circuit_type": "circom", + "date_created": "2024-01-15T12:58:03.819Z", + "perform_verify": false, + "status": "Ready", + "compute_time": "P0DT00H00M05.952523S", + "compute_times": { + "prove": 5.78664686344564, + "total": 6.02712868899107, + "queued": 19.881766, + "clean_up": 0.000322168692946434, + "file_setup": 0.22792908176779747, + "save_results": 0.0026133283972740173, + "generate_witness_c": 0.009340517222881317 + }, + "file_sizes": { + "proof": 705, + "total": 711, + "public": 6, + "total_gb": 7.11e-7, + "total_mb": 0.000711 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "proof_input": null, + "proof": null, + "prover_implementation": { + "name": "GPU Tachyonic", + "smbc": 6, + "smcurve": "spparkx.alt_bn128", + "smreplicate": false + }, + "public": null, + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nopl nonstop_tsc cpuid extd_apicid aperfmperf rapl pni pclmulqdq monitor ssse3 fma cx16 pcid sse4_1 sse4_2 movbe popcnt aes xsave avx f16c rdrand lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt tce topoext perfctr_core perfctr_nb bpext perfctr_llc mwaitx cpb cat_l3 cdp_l3 invpcid_single hw_pstate ssbd mba ibrs ibpb stibp vmmcall fsgsbase bmi1 avx2 smep bmi2 invpcid cqm rdt_a rdseed adx smap clflushopt clwb sha_ni xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local clzero irperf xsaveerptr rdpru wbnoinvd amd_ppin brs arat npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold v_vmsave_vmload vgif v_spec_ctrl umip pku ospke vaes vpclmulqdq rdpid overflow_recov succor smca", + "Model:": "1", + "CPU(s):": "128", + "BogoMIPS:": "5200.22", + "L2 cache:": "32 MiB (64 instances)", + "L3 cache:": "256 MiB (8 instances)", + "Stepping:": "1", + "L1d cache:": "2 MiB (64 instances)", + "L1i cache:": "2 MiB (64 instances)", + "Socket(s):": "2", + "Vendor ID:": "AuthenticAMD", + "Byte Order:": "Little Endian", + "CPU family:": "25", + "Model name:": "AMD EPYC 7513 32-Core Processor", + "CPU max MHz:": "3681.6399", + "CPU min MHz:": "1500.0000", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "48 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "AMD-V", + "Frequency boost:": "enabled", + "NUMA node0 CPU(s):": "0-31,64-95", + "NUMA node1 CPU(s):": "32-63,96-127", + "Vulnerability Mds:": "Not affected", + "Core(s) per socket:": "32", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Not affected", + "On-line CPU(s) list:": "0,7-31,34-64,71-95,98-127", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "1-6,32,33,65-70,96,97", + "Vulnerability Meltdown:": "Not affected", + "Vulnerability Retbleed:": "Not affected", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; Retpolines, IBPB conditional, IBRS_FW, STIBP always-on, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "Not affected", + "Vulnerability Mmio stale data:": "Not affected", + "Vulnerability Tsx async abort:": "Not affected", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [ + { + "id": 0, + "name": "NVIDIA RTX A5000", + "uuid": "GPU-8123ac87-4c84-a9e9-8b99-054309b65f6c", + "driver": "525.125.06", + "serial": "1323821036088", + "memory_total_MiB": 24564 + } + ], + "num_gpus": 1 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null + }, + { + "proof_id": "0593535e-0857-4dfc-8f4d-2b151e5f7bad", + "circuit_name": "circom-multiplier2", + "circuit_id": "b0811776-3cbb-4f04-91fa-77ff7816010c", + "circuit_type": "circom", + "date_created": "2024-01-15T12:58:00.883Z", + "perform_verify": false, + "status": "Ready", + "compute_time": "P0DT00H00M06.075331S", + "compute_times": { + "prove": 5.884085742756724, + "total": 6.148683849722147, + "queued": 15.626844, + "clean_up": 0.0003361683338880539, + "file_setup": 0.25031704641878605, + "save_results": 0.0027868077158927917, + "generate_witness_c": 0.010888265445828438 + }, + "file_sizes": { + "proof": 709, + "total": 715, + "public": 6, + "total_gb": 7.15e-7, + "total_mb": 0.000715 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "proof_input": null, + "proof": null, + "prover_implementation": { + "name": "GPU Tachyonic", + "smbc": 6, + "smcurve": "spparkx.alt_bn128", + "smreplicate": false + }, + "public": null, + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nopl nonstop_tsc cpuid extd_apicid aperfmperf rapl pni pclmulqdq monitor ssse3 fma cx16 pcid sse4_1 sse4_2 movbe popcnt aes xsave avx f16c rdrand lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt tce topoext perfctr_core perfctr_nb bpext perfctr_llc mwaitx cpb cat_l3 cdp_l3 invpcid_single hw_pstate ssbd mba ibrs ibpb stibp vmmcall fsgsbase bmi1 avx2 smep bmi2 invpcid cqm rdt_a rdseed adx smap clflushopt clwb sha_ni xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local clzero irperf xsaveerptr rdpru wbnoinvd amd_ppin brs arat npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold v_vmsave_vmload vgif v_spec_ctrl umip pku ospke vaes vpclmulqdq rdpid overflow_recov succor smca", + "Model:": "1", + "CPU(s):": "128", + "BogoMIPS:": "5200.22", + "L2 cache:": "32 MiB (64 instances)", + "L3 cache:": "256 MiB (8 instances)", + "Stepping:": "1", + "L1d cache:": "2 MiB (64 instances)", + "L1i cache:": "2 MiB (64 instances)", + "Socket(s):": "2", + "Vendor ID:": "AuthenticAMD", + "Byte Order:": "Little Endian", + "CPU family:": "25", + "Model name:": "AMD EPYC 7513 32-Core Processor", + "CPU max MHz:": "3681.6399", + "CPU min MHz:": "1500.0000", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "48 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "AMD-V", + "Frequency boost:": "enabled", + "NUMA node0 CPU(s):": "0-31,64-95", + "NUMA node1 CPU(s):": "32-63,96-127", + "Vulnerability Mds:": "Not affected", + "Core(s) per socket:": "32", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Not affected", + "On-line CPU(s) list:": "0,5-64,69-127", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "1-4,65-68", + "Vulnerability Meltdown:": "Not affected", + "Vulnerability Retbleed:": "Not affected", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; Retpolines, IBPB conditional, IBRS_FW, STIBP always-on, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "Not affected", + "Vulnerability Mmio stale data:": "Not affected", + "Vulnerability Tsx async abort:": "Not affected", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [ + { + "id": 0, + "name": "NVIDIA RTX A5000", + "uuid": "GPU-8123ac87-4c84-a9e9-8b99-054309b65f6c", + "driver": "525.125.06", + "serial": "1323821036088", + "memory_total_MiB": 24564 + } + ], + "num_gpus": 1 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null + }, + { + "proof_id": "1a60be26-4e51-4ac6-befd-db89c42c6f47", + "circuit_name": "circom-multiplier2", + "circuit_id": "f8e982ba-0f45-445f-8080-31e81ea66636", + "circuit_type": "circom", + "date_created": "2024-01-15T12:57:55.709Z", + "perform_verify": false, + "status": "Ready", + "compute_time": "P0DT00H00M06.347161S", + "compute_times": { + "prove": 6.171584198251367, + "total": 6.416391229256988, + "queued": 13.397523, + "clean_up": 0.00026652775704860687, + "file_setup": 0.23340564966201782, + "save_results": 0.0024722814559936523, + "generate_witness_c": 0.008305234834551811 + }, + "file_sizes": { + "proof": 706, + "total": 712, + "public": 6, + "total_gb": 7.12e-7, + "total_mb": 0.000712 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "proof_input": null, + "proof": null, + "prover_implementation": { + "name": "GPU Tachyonic", + "smbc": 6, + "smcurve": "spparkx.alt_bn128", + "smreplicate": false + }, + "public": null, + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nopl nonstop_tsc cpuid extd_apicid aperfmperf rapl pni pclmulqdq monitor ssse3 fma cx16 pcid sse4_1 sse4_2 movbe popcnt aes xsave avx f16c rdrand lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt tce topoext perfctr_core perfctr_nb bpext perfctr_llc mwaitx cpb cat_l3 cdp_l3 invpcid_single hw_pstate ssbd mba ibrs ibpb stibp vmmcall fsgsbase bmi1 avx2 smep bmi2 invpcid cqm rdt_a rdseed adx smap clflushopt clwb sha_ni xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local clzero irperf xsaveerptr rdpru wbnoinvd amd_ppin brs arat npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold v_vmsave_vmload vgif v_spec_ctrl umip pku ospke vaes vpclmulqdq rdpid overflow_recov succor smca", + "Model:": "1", + "CPU(s):": "128", + "BogoMIPS:": "5200.22", + "L2 cache:": "32 MiB (64 instances)", + "L3 cache:": "256 MiB (8 instances)", + "Stepping:": "1", + "L1d cache:": "2 MiB (64 instances)", + "L1i cache:": "2 MiB (64 instances)", + "Socket(s):": "2", + "Vendor ID:": "AuthenticAMD", + "Byte Order:": "Little Endian", + "CPU family:": "25", + "Model name:": "AMD EPYC 7513 32-Core Processor", + "CPU max MHz:": "3681.6399", + "CPU min MHz:": "1500.0000", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "48 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "AMD-V", + "Frequency boost:": "enabled", + "NUMA node0 CPU(s):": "0-31,64-95", + "NUMA node1 CPU(s):": "32-63,96-127", + "Vulnerability Mds:": "Not affected", + "Core(s) per socket:": "32", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Not affected", + "On-line CPU(s) list:": "0,5-64,69-127", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "1-4,65-68", + "Vulnerability Meltdown:": "Not affected", + "Vulnerability Retbleed:": "Not affected", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; Retpolines, IBPB conditional, IBRS_FW, STIBP always-on, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "Not affected", + "Vulnerability Mmio stale data:": "Not affected", + "Vulnerability Tsx async abort:": "Not affected", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [ + { + "id": 0, + "name": "NVIDIA RTX A5000", + "uuid": "GPU-8123ac87-4c84-a9e9-8b99-054309b65f6c", + "driver": "525.125.06", + "serial": "1323821036088", + "memory_total_MiB": 24564 + } + ], + "num_gpus": 1 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null + }, + { + "proof_id": "e06d8295-f579-452d-aff6-58b1733c3b00", + "circuit_name": "circom-multiplier2", + "circuit_id": "39a7d49d-2aa4-42f5-bad7-41fa853c5400", + "circuit_type": "circom", + "date_created": "2024-01-15T12:57:48.596Z", + "perform_verify": false, + "status": "Ready", + "compute_time": "P0DT00H00M06.389301S", + "compute_times": { + "prove": 6.184801682829857, + "total": 6.4623388685286045, + "queued": 13.056683, + "clean_up": 0.00022029876708984375, + "file_setup": 0.2468203753232956, + "save_results": 0.002211831510066986, + "generate_witness_c": 0.027915021404623985 + }, + "file_sizes": { + "proof": 708, + "total": 714, + "public": 6, + "total_gb": 7.14e-7, + "total_mb": 0.000714 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "proof_input": null, + "proof": null, + "prover_implementation": { + "name": "GPU Tachyonic", + "smbc": 6, + "smcurve": "spparkx.alt_bn128", + "smreplicate": false + }, + "public": null, + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nopl nonstop_tsc cpuid extd_apicid aperfmperf rapl pni pclmulqdq monitor ssse3 fma cx16 pcid sse4_1 sse4_2 movbe popcnt aes xsave avx f16c rdrand lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt tce topoext perfctr_core perfctr_nb bpext perfctr_llc mwaitx cpb cat_l3 cdp_l3 invpcid_single hw_pstate ssbd mba ibrs ibpb stibp vmmcall fsgsbase bmi1 avx2 smep bmi2 invpcid cqm rdt_a rdseed adx smap clflushopt clwb sha_ni xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local clzero irperf xsaveerptr rdpru wbnoinvd amd_ppin brs arat npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold v_vmsave_vmload vgif v_spec_ctrl umip pku ospke vaes vpclmulqdq rdpid overflow_recov succor smca", + "Model:": "1", + "CPU(s):": "128", + "BogoMIPS:": "5200.22", + "L2 cache:": "32 MiB (64 instances)", + "L3 cache:": "256 MiB (8 instances)", + "Stepping:": "1", + "L1d cache:": "2 MiB (64 instances)", + "L1i cache:": "2 MiB (64 instances)", + "Socket(s):": "2", + "Vendor ID:": "AuthenticAMD", + "Byte Order:": "Little Endian", + "CPU family:": "25", + "Model name:": "AMD EPYC 7513 32-Core Processor", + "CPU max MHz:": "3681.6399", + "CPU min MHz:": "1500.0000", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "48 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "AMD-V", + "Frequency boost:": "enabled", + "NUMA node0 CPU(s):": "0-31,64-95", + "NUMA node1 CPU(s):": "32-63,96-127", + "Vulnerability Mds:": "Not affected", + "Core(s) per socket:": "32", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Not affected", + "On-line CPU(s) list:": "0,5-64,69-127", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "1-4,65-68", + "Vulnerability Meltdown:": "Not affected", + "Vulnerability Retbleed:": "Not affected", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; Retpolines, IBPB conditional, IBRS_FW, STIBP always-on, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "Not affected", + "Vulnerability Mmio stale data:": "Not affected", + "Vulnerability Tsx async abort:": "Not affected", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [ + { + "id": 0, + "name": "NVIDIA RTX A5000", + "uuid": "GPU-8123ac87-4c84-a9e9-8b99-054309b65f6c", + "driver": "525.125.06", + "serial": "1323821036088", + "memory_total_MiB": 24564 + } + ], + "num_gpus": 1 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null + }, + { + "proof_id": "2e4edf7e-5109-43cf-a48d-4b4fdfcd2e19", + "circuit_name": "circom-multiplier2", + "circuit_id": "4803fbe7-94df-4450-862e-222f380aa951", + "circuit_type": "circom", + "date_created": "2024-01-15T02:08:34.540Z", + "perform_verify": false, + "status": "Ready", + "compute_time": "P0DT00H00M03.935803S", + "compute_times": { + "prove": 3.0700035598129034, + "total": 4.0028952937573195, + "queued": 0.33355, + "clean_up": 0.0002639107406139374, + "file_setup": 0.27034700475633144, + "save_results": 0.06622319296002388, + "generate_witness_c": 0.5958553366363049 + }, + "file_sizes": { + "proof": 707, + "total": 713, + "public": 6, + "total_gb": 7.13e-7, + "total_mb": 0.000713 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "proof_input": null, + "proof": null, + "prover_implementation": { + "name": "GPU Tachyonic", + "smbc": 6, + "smcurve": "spparkx.alt_bn128", + "smreplicate": false + }, + "public": null, + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nopl nonstop_tsc cpuid extd_apicid aperfmperf rapl pni pclmulqdq monitor ssse3 fma cx16 pcid sse4_1 sse4_2 movbe popcnt aes xsave avx f16c rdrand lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt tce topoext perfctr_core perfctr_nb bpext perfctr_llc mwaitx cpb cat_l3 cdp_l3 invpcid_single hw_pstate ssbd mba ibrs ibpb stibp vmmcall fsgsbase bmi1 avx2 smep bmi2 invpcid cqm rdt_a rdseed adx smap clflushopt clwb sha_ni xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local clzero irperf xsaveerptr rdpru wbnoinvd amd_ppin brs arat npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold v_vmsave_vmload vgif v_spec_ctrl umip pku ospke vaes vpclmulqdq rdpid overflow_recov succor smca", + "Model:": "1", + "CPU(s):": "128", + "BogoMIPS:": "5200.47", + "L2 cache:": "32 MiB (64 instances)", + "L3 cache:": "256 MiB (8 instances)", + "Stepping:": "1", + "L1d cache:": "2 MiB (64 instances)", + "L1i cache:": "2 MiB (64 instances)", + "Socket(s):": "2", + "Vendor ID:": "AuthenticAMD", + "Byte Order:": "Little Endian", + "CPU family:": "25", + "Model name:": "AMD EPYC 7513 32-Core Processor", + "CPU max MHz:": "3681.6399", + "CPU min MHz:": "1500.0000", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "48 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "AMD-V", + "Frequency boost:": "enabled", + "NUMA node0 CPU(s):": "0-31,64-95", + "NUMA node1 CPU(s):": "32-63,96-127", + "Vulnerability Mds:": "Not affected", + "Core(s) per socket:": "32", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Not affected", + "On-line CPU(s) list:": "0,6,8,10-31,35-63,69,70,72,74-95,99-127", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "1-5,7,9,32-34,64-68,71,73,96-98", + "Vulnerability Meltdown:": "Not affected", + "Vulnerability Retbleed:": "Not affected", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; Retpolines, IBPB conditional, IBRS_FW, STIBP always-on, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "Not affected", + "Vulnerability Mmio stale data:": "Not affected", + "Vulnerability Tsx async abort:": "Not affected", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [ + { + "id": 0, + "name": "NVIDIA RTX A5000", + "uuid": "GPU-d8160060-7665-694b-2fae-0222ae6d41b2", + "driver": "525.125.06", + "serial": "1322721018312", + "memory_total_MiB": 24564 + } + ], + "num_gpus": 1 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null + }, + { + "proof_id": "e119fb54-5449-4a01-ab87-b45ef71643db", + "circuit_name": "circom-multiplier2", + "circuit_id": "384650aa-8967-4250-af2a-7314d45d6a9e", + "circuit_type": "circom", + "date_created": "2024-01-15T02:08:29.773Z", + "perform_verify": false, + "status": "Ready", + "compute_time": "P0DT00H00M05.856164S", + "compute_times": { + "prove": 5.639464415609837, + "total": 5.929233264178038, + "queued": 0.650797, + "clean_up": 0.00027068890631198883, + "file_setup": 0.25932174175977707, + "save_results": 0.0027653388679027557, + "generate_witness_c": 0.02706645056605339 + }, + "file_sizes": { + "proof": 707, + "total": 713, + "public": 6, + "total_gb": 7.13e-7, + "total_mb": 0.000713 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "proof_input": null, + "proof": null, + "prover_implementation": { + "name": "GPU Tachyonic", + "smbc": 6, + "smcurve": "spparkx.alt_bn128", + "smreplicate": false + }, + "public": null, + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nopl nonstop_tsc cpuid extd_apicid aperfmperf rapl pni pclmulqdq monitor ssse3 fma cx16 pcid sse4_1 sse4_2 movbe popcnt aes xsave avx f16c rdrand lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt tce topoext perfctr_core perfctr_nb bpext perfctr_llc mwaitx cpb cat_l3 cdp_l3 invpcid_single hw_pstate ssbd mba ibrs ibpb stibp vmmcall fsgsbase bmi1 avx2 smep bmi2 invpcid cqm rdt_a rdseed adx smap clflushopt clwb sha_ni xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local clzero irperf xsaveerptr rdpru wbnoinvd amd_ppin brs arat npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold v_vmsave_vmload vgif v_spec_ctrl umip pku ospke vaes vpclmulqdq rdpid overflow_recov succor smca", + "Model:": "1", + "CPU(s):": "128", + "BogoMIPS:": "5200.16", + "L2 cache:": "32 MiB (64 instances)", + "L3 cache:": "256 MiB (8 instances)", + "Stepping:": "1", + "L1d cache:": "2 MiB (64 instances)", + "L1i cache:": "2 MiB (64 instances)", + "Socket(s):": "2", + "Vendor ID:": "AuthenticAMD", + "Byte Order:": "Little Endian", + "CPU family:": "25", + "Model name:": "AMD EPYC 7513 32-Core Processor", + "CPU max MHz:": "3681.6399", + "CPU min MHz:": "1500.0000", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "48 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "AMD-V", + "Frequency boost:": "enabled", + "NUMA node0 CPU(s):": "0-31,64-95", + "NUMA node1 CPU(s):": "32-63,96-127", + "Vulnerability Mds:": "Not affected", + "Core(s) per socket:": "32", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Not affected", + "On-line CPU(s) list:": "0,1,7-31,34-65,67,71-95,98-127", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "2-6,32,33,66,68-70,96,97", + "Vulnerability Meltdown:": "Not affected", + "Vulnerability Retbleed:": "Not affected", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; Retpolines, IBPB conditional, IBRS_FW, STIBP always-on, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "Not affected", + "Vulnerability Mmio stale data:": "Not affected", + "Vulnerability Tsx async abort:": "Not affected", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [ + { + "id": 0, + "name": "NVIDIA RTX A5000", + "uuid": "GPU-79117d4d-91b9-eb61-753d-b86432cca7e8", + "driver": "525.125.06", + "serial": "1325121130125", + "memory_total_MiB": 24564 + } + ], + "num_gpus": 1 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null + }, + { + "proof_id": "d4611aeb-4705-4373-951c-ba4c1e0329b5", + "circuit_name": "circom-multiplier2", + "circuit_id": "fda87f7f-c3ec-4f10-948e-d033331c76c9", + "circuit_type": "circom", + "date_created": "2024-01-15T02:08:24.790Z", + "perform_verify": false, + "status": "Ready", + "compute_time": "P0DT00H00M02.340675S", + "compute_times": { + "prove": 1.4024820234626532, + "total": 2.4250366389751434, + "queued": 0.269107, + "clean_up": 0.0002933405339717865, + "file_setup": 0.3153865169733763, + "save_results": 0.06680999137461185, + "generate_witness_c": 0.6396786384284496 + }, + "file_sizes": { + "proof": 708, + "total": 714, + "public": 6, + "total_gb": 7.14e-7, + "total_mb": 0.000714 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "proof_input": null, + "proof": null, + "prover_implementation": { + "name": "GPU Tachyonic", + "smbc": 6, + "smcurve": "spparkx.alt_bn128", + "smreplicate": false + }, + "public": null, + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nopl nonstop_tsc cpuid extd_apicid aperfmperf rapl pni pclmulqdq monitor ssse3 fma cx16 pcid sse4_1 sse4_2 movbe popcnt aes xsave avx f16c rdrand lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt tce topoext perfctr_core perfctr_nb bpext perfctr_llc mwaitx cpb cat_l3 cdp_l3 invpcid_single hw_pstate ssbd mba ibrs ibpb stibp vmmcall fsgsbase bmi1 avx2 smep bmi2 invpcid cqm rdt_a rdseed adx smap clflushopt clwb sha_ni xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local clzero irperf xsaveerptr rdpru wbnoinvd amd_ppin brs arat npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold v_vmsave_vmload vgif v_spec_ctrl umip pku ospke vaes vpclmulqdq rdpid overflow_recov succor smca", + "Model:": "1", + "CPU(s):": "128", + "BogoMIPS:": "5200.47", + "L2 cache:": "32 MiB (64 instances)", + "L3 cache:": "256 MiB (8 instances)", + "Stepping:": "1", + "L1d cache:": "2 MiB (64 instances)", + "L1i cache:": "2 MiB (64 instances)", + "Socket(s):": "2", + "Vendor ID:": "AuthenticAMD", + "Byte Order:": "Little Endian", + "CPU family:": "25", + "Model name:": "AMD EPYC 7513 32-Core Processor", + "CPU max MHz:": "3681.6399", + "CPU min MHz:": "1500.0000", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "48 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "AMD-V", + "Frequency boost:": "enabled", + "NUMA node0 CPU(s):": "0-31,64-95", + "NUMA node1 CPU(s):": "32-63,96-127", + "Vulnerability Mds:": "Not affected", + "Core(s) per socket:": "32", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Not affected", + "On-line CPU(s) list:": "0,2,5,6,8,10-31,35-63,66,69,70,72,74-95,99-127", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "1,3,4,7,9,32-34,64,65,67,68,71,73,96-98", + "Vulnerability Meltdown:": "Not affected", + "Vulnerability Retbleed:": "Not affected", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; Retpolines, IBPB conditional, IBRS_FW, STIBP always-on, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "Not affected", + "Vulnerability Mmio stale data:": "Not affected", + "Vulnerability Tsx async abort:": "Not affected", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [ + { + "id": 0, + "name": "NVIDIA RTX A5000", + "uuid": "GPU-d8160060-7665-694b-2fae-0222ae6d41b2", + "driver": "525.125.06", + "serial": "1322721018312", + "memory_total_MiB": 24564 + } + ], + "num_gpus": 1 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null + }, + { + "proof_id": "4f8ff74c-1051-44a3-ab0c-f4a6284bbf64", + "circuit_name": "circom-multiplier2", + "circuit_id": "57a370e8-d904-4e45-ad58-196db3d30f4d", + "circuit_type": "circom", + "date_created": "2024-01-15T02:08:20.359Z", + "perform_verify": false, + "status": "Ready", + "compute_time": "P0DT00H00M05.889013S", + "compute_times": { + "prove": 5.641947815194726, + "total": 5.964788755401969, + "queued": 0.707221, + "clean_up": 0.00029845722019672394, + "file_setup": 0.2756399307399988, + "save_results": 0.003031056374311447, + "generate_witness_c": 0.04360153712332249 + }, + "file_sizes": { + "proof": 706, + "total": 712, + "public": 6, + "total_gb": 7.12e-7, + "total_mb": 0.000712 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "proof_input": null, + "proof": null, + "prover_implementation": { + "name": "GPU Tachyonic", + "smbc": 6, + "smcurve": "spparkx.alt_bn128", + "smreplicate": false + }, + "public": null, + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nopl nonstop_tsc cpuid extd_apicid aperfmperf rapl pni pclmulqdq monitor ssse3 fma cx16 pcid sse4_1 sse4_2 movbe popcnt aes xsave avx f16c rdrand lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt tce topoext perfctr_core perfctr_nb bpext perfctr_llc mwaitx cpb cat_l3 cdp_l3 invpcid_single hw_pstate ssbd mba ibrs ibpb stibp vmmcall fsgsbase bmi1 avx2 smep bmi2 invpcid cqm rdt_a rdseed adx smap clflushopt clwb sha_ni xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local clzero irperf xsaveerptr rdpru wbnoinvd amd_ppin brs arat npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold v_vmsave_vmload vgif v_spec_ctrl umip pku ospke vaes vpclmulqdq rdpid overflow_recov succor smca", + "Model:": "1", + "CPU(s):": "128", + "BogoMIPS:": "5200.16", + "L2 cache:": "32 MiB (64 instances)", + "L3 cache:": "256 MiB (8 instances)", + "Stepping:": "1", + "L1d cache:": "2 MiB (64 instances)", + "L1i cache:": "2 MiB (64 instances)", + "Socket(s):": "2", + "Vendor ID:": "AuthenticAMD", + "Byte Order:": "Little Endian", + "CPU family:": "25", + "Model name:": "AMD EPYC 7513 32-Core Processor", + "CPU max MHz:": "3681.6399", + "CPU min MHz:": "1500.0000", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "48 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "AMD-V", + "Frequency boost:": "enabled", + "NUMA node0 CPU(s):": "0-31,64-95", + "NUMA node1 CPU(s):": "32-63,96-127", + "Vulnerability Mds:": "Not affected", + "Core(s) per socket:": "32", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Not affected", + "On-line CPU(s) list:": "0,1,7-31,34-65,67,71-95,98-127", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "2-6,32,33,66,68-70,96,97", + "Vulnerability Meltdown:": "Not affected", + "Vulnerability Retbleed:": "Not affected", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; Retpolines, IBPB conditional, IBRS_FW, STIBP always-on, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "Not affected", + "Vulnerability Mmio stale data:": "Not affected", + "Vulnerability Tsx async abort:": "Not affected", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [ + { + "id": 0, + "name": "NVIDIA RTX A5000", + "uuid": "GPU-79117d4d-91b9-eb61-753d-b86432cca7e8", + "driver": "525.125.06", + "serial": "1325121130125", + "memory_total_MiB": 24564 + } + ], + "num_gpus": 1 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null + }, + { + "proof_id": "d4ed1066-64bb-4f8b-a04c-03e87ba067d0", + "circuit_name": "circom-multiplier2", + "circuit_id": "1ffbe8f9-87c8-4e42-baa8-7aa33c4d17ee", + "circuit_type": "circom", + "date_created": "2024-01-15T02:07:24.129Z", + "perform_verify": false, + "status": "Ready", + "compute_time": "P0DT00H00M05.822988S", + "compute_times": { + "prove": 5.622058680281043, + "total": 5.897718669846654, + "queued": 7.598676, + "clean_up": 0.00030495598912239075, + "file_setup": 0.26278817281126976, + "save_results": 0.0033362358808517456, + "generate_witness_c": 0.008939847350120544 + }, + "file_sizes": { + "proof": 705, + "total": 711, + "public": 6, + "total_gb": 7.11e-7, + "total_mb": 0.000711 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "proof_input": null, + "proof": null, + "prover_implementation": { + "name": "GPU Tachyonic", + "smbc": 6, + "smcurve": "spparkx.alt_bn128", + "smreplicate": false + }, + "public": null, + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nopl nonstop_tsc cpuid extd_apicid aperfmperf rapl pni pclmulqdq monitor ssse3 fma cx16 pcid sse4_1 sse4_2 movbe popcnt aes xsave avx f16c rdrand lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt tce topoext perfctr_core perfctr_nb bpext perfctr_llc mwaitx cpb cat_l3 cdp_l3 invpcid_single hw_pstate ssbd mba ibrs ibpb stibp vmmcall fsgsbase bmi1 avx2 smep bmi2 invpcid cqm rdt_a rdseed adx smap clflushopt clwb sha_ni xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local clzero irperf xsaveerptr rdpru wbnoinvd amd_ppin brs arat npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold v_vmsave_vmload vgif v_spec_ctrl umip pku ospke vaes vpclmulqdq rdpid overflow_recov succor smca", + "Model:": "1", + "CPU(s):": "128", + "BogoMIPS:": "5200.16", + "L2 cache:": "32 MiB (64 instances)", + "L3 cache:": "256 MiB (8 instances)", + "Stepping:": "1", + "L1d cache:": "2 MiB (64 instances)", + "L1i cache:": "2 MiB (64 instances)", + "Socket(s):": "2", + "Vendor ID:": "AuthenticAMD", + "Byte Order:": "Little Endian", + "CPU family:": "25", + "Model name:": "AMD EPYC 7513 32-Core Processor", + "CPU max MHz:": "3681.6399", + "CPU min MHz:": "1500.0000", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "48 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "AMD-V", + "Frequency boost:": "enabled", + "NUMA node0 CPU(s):": "0-31,64-95", + "NUMA node1 CPU(s):": "32-63,96-127", + "Vulnerability Mds:": "Not affected", + "Core(s) per socket:": "32", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Not affected", + "On-line CPU(s) list:": "0,1,7-31,34-65,67,71-95,98-127", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "2-6,32,33,66,68-70,96,97", + "Vulnerability Meltdown:": "Not affected", + "Vulnerability Retbleed:": "Not affected", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; Retpolines, IBPB conditional, IBRS_FW, STIBP always-on, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "Not affected", + "Vulnerability Mmio stale data:": "Not affected", + "Vulnerability Tsx async abort:": "Not affected", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [ + { + "id": 0, + "name": "NVIDIA RTX A5000", + "uuid": "GPU-79117d4d-91b9-eb61-753d-b86432cca7e8", + "driver": "525.125.06", + "serial": "1325121130125", + "memory_total_MiB": 24564 + } + ], + "num_gpus": 1 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null + }, + { + "proof_id": "62e6a199-072a-4fbb-bd75-7d5ae26c3bf0", + "circuit_name": "circom-multiplier2", + "circuit_id": "d40bcb67-e940-4fb1-b733-5382a0d24818", + "circuit_type": "circom", + "date_created": "2024-01-15T02:07:23.768Z", + "perform_verify": false, + "status": "Ready", + "compute_time": "P0DT00H00M05.857713S", + "compute_times": { + "prove": 5.647087793797255, + "total": 5.9318443313241005, + "queued": 0.709273, + "clean_up": 0.000293998047709465, + "file_setup": 0.259655237197876, + "save_results": 0.0029127690941095352, + "generate_witness_c": 0.021628186106681824 + }, + "file_sizes": { + "proof": 708, + "total": 714, + "public": 6, + "total_gb": 7.14e-7, + "total_mb": 0.000714 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "proof_input": null, + "proof": null, + "prover_implementation": { + "name": "GPU Tachyonic", + "smbc": 6, + "smcurve": "spparkx.alt_bn128", + "smreplicate": false + }, + "public": null, + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nopl nonstop_tsc cpuid extd_apicid aperfmperf rapl pni pclmulqdq monitor ssse3 fma cx16 pcid sse4_1 sse4_2 movbe popcnt aes xsave avx f16c rdrand lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt tce topoext perfctr_core perfctr_nb bpext perfctr_llc mwaitx cpb cat_l3 cdp_l3 invpcid_single hw_pstate ssbd mba ibrs ibpb stibp vmmcall fsgsbase bmi1 avx2 smep bmi2 invpcid cqm rdt_a rdseed adx smap clflushopt clwb sha_ni xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local clzero irperf xsaveerptr rdpru wbnoinvd amd_ppin brs arat npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold v_vmsave_vmload vgif v_spec_ctrl umip pku ospke vaes vpclmulqdq rdpid overflow_recov succor smca", + "Model:": "1", + "CPU(s):": "128", + "BogoMIPS:": "5200.16", + "L2 cache:": "32 MiB (64 instances)", + "L3 cache:": "256 MiB (8 instances)", + "Stepping:": "1", + "L1d cache:": "2 MiB (64 instances)", + "L1i cache:": "2 MiB (64 instances)", + "Socket(s):": "2", + "Vendor ID:": "AuthenticAMD", + "Byte Order:": "Little Endian", + "CPU family:": "25", + "Model name:": "AMD EPYC 7513 32-Core Processor", + "CPU max MHz:": "3681.6399", + "CPU min MHz:": "1500.0000", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "48 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "AMD-V", + "Frequency boost:": "enabled", + "NUMA node0 CPU(s):": "0-31,64-95", + "NUMA node1 CPU(s):": "32-63,96-127", + "Vulnerability Mds:": "Not affected", + "Core(s) per socket:": "32", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Not affected", + "On-line CPU(s) list:": "0,1,7-31,34-65,67,71-95,98-127", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "2-6,32,33,66,68-70,96,97", + "Vulnerability Meltdown:": "Not affected", + "Vulnerability Retbleed:": "Not affected", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; Retpolines, IBPB conditional, IBRS_FW, STIBP always-on, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "Not affected", + "Vulnerability Mmio stale data:": "Not affected", + "Vulnerability Tsx async abort:": "Not affected", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [ + { + "id": 0, + "name": "NVIDIA RTX A5000", + "uuid": "GPU-79117d4d-91b9-eb61-753d-b86432cca7e8", + "driver": "525.125.06", + "serial": "1325121130125", + "memory_total_MiB": 24564 + } + ], + "num_gpus": 1 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null + }, + { + "proof_id": "4a8ec462-1b17-4478-ab4d-daec1c1d19e0", + "circuit_name": "circom-multiplier2", + "circuit_id": "a5de0eca-b376-4d33-91b6-9a30d4235aa7", + "circuit_type": "circom", + "date_created": "2024-01-15T02:03:39.549Z", + "perform_verify": false, + "status": "Ready", + "compute_time": "P0DT00H00M05.830061S", + "compute_times": { + "prove": 5.631390610709786, + "total": 5.904656020924449, + "queued": 1.982144, + "clean_up": 0.00028679706156253815, + "file_setup": 0.2506247963756323, + "save_results": 0.0030198898166418076, + "generate_witness_c": 0.018950100988149643 + }, + "file_sizes": { + "proof": 708, + "total": 714, + "public": 6, + "total_gb": 7.14e-7, + "total_mb": 0.000714 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "proof_input": null, + "proof": null, + "prover_implementation": { + "name": "GPU Tachyonic", + "smbc": 6, + "smcurve": "spparkx.alt_bn128", + "smreplicate": false + }, + "public": null, + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nopl nonstop_tsc cpuid extd_apicid aperfmperf rapl pni pclmulqdq monitor ssse3 fma cx16 pcid sse4_1 sse4_2 movbe popcnt aes xsave avx f16c rdrand lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt tce topoext perfctr_core perfctr_nb bpext perfctr_llc mwaitx cpb cat_l3 cdp_l3 invpcid_single hw_pstate ssbd mba ibrs ibpb stibp vmmcall fsgsbase bmi1 avx2 smep bmi2 invpcid cqm rdt_a rdseed adx smap clflushopt clwb sha_ni xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local clzero irperf xsaveerptr rdpru wbnoinvd amd_ppin brs arat npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold v_vmsave_vmload vgif v_spec_ctrl umip pku ospke vaes vpclmulqdq rdpid overflow_recov succor smca", + "Model:": "1", + "CPU(s):": "128", + "BogoMIPS:": "5200.16", + "L2 cache:": "32 MiB (64 instances)", + "L3 cache:": "256 MiB (8 instances)", + "Stepping:": "1", + "L1d cache:": "2 MiB (64 instances)", + "L1i cache:": "2 MiB (64 instances)", + "Socket(s):": "2", + "Vendor ID:": "AuthenticAMD", + "Byte Order:": "Little Endian", + "CPU family:": "25", + "Model name:": "AMD EPYC 7513 32-Core Processor", + "CPU max MHz:": "3681.6399", + "CPU min MHz:": "1500.0000", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "48 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "AMD-V", + "Frequency boost:": "enabled", + "NUMA node0 CPU(s):": "0-31,64-95", + "NUMA node1 CPU(s):": "32-63,96-127", + "Vulnerability Mds:": "Not affected", + "Core(s) per socket:": "32", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Not affected", + "On-line CPU(s) list:": "0,1,7-31,34-65,67,71-95,98-127", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "2-6,32,33,66,68-70,96,97", + "Vulnerability Meltdown:": "Not affected", + "Vulnerability Retbleed:": "Not affected", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; Retpolines, IBPB conditional, IBRS_FW, STIBP always-on, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "Not affected", + "Vulnerability Mmio stale data:": "Not affected", + "Vulnerability Tsx async abort:": "Not affected", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [ + { + "id": 0, + "name": "NVIDIA RTX A5000", + "uuid": "GPU-79117d4d-91b9-eb61-753d-b86432cca7e8", + "driver": "525.125.06", + "serial": "1325121130125", + "memory_total_MiB": 24564 + } + ], + "num_gpus": 1 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null + }, + { + "proof_id": "55636021-bab1-4e5c-a552-271ecd3bca46", + "circuit_name": "circom-multiplier2", + "circuit_id": "3eec50d0-8bc1-4266-8506-a76961a3627d", + "circuit_type": "circom", + "date_created": "2024-01-15T02:03:30.608Z", + "perform_verify": false, + "status": "Ready", + "compute_time": "P0DT00H00M05.833596S", + "compute_times": { + "prove": 5.6385393515229225, + "total": 5.9040695410221815, + "queued": 0.701332, + "clean_up": 0.00033533573150634766, + "file_setup": 0.24379334598779678, + "save_results": 0.0030993279069662094, + "generate_witness_c": 0.017941521480679512 + }, + "file_sizes": { + "proof": 706, + "total": 712, + "public": 6, + "total_gb": 7.12e-7, + "total_mb": 0.000712 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "proof_input": null, + "proof": null, + "prover_implementation": { + "name": "GPU Tachyonic", + "smbc": 6, + "smcurve": "spparkx.alt_bn128", + "smreplicate": false + }, + "public": null, + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nopl nonstop_tsc cpuid extd_apicid aperfmperf rapl pni pclmulqdq monitor ssse3 fma cx16 pcid sse4_1 sse4_2 movbe popcnt aes xsave avx f16c rdrand lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt tce topoext perfctr_core perfctr_nb bpext perfctr_llc mwaitx cpb cat_l3 cdp_l3 invpcid_single hw_pstate ssbd mba ibrs ibpb stibp vmmcall fsgsbase bmi1 avx2 smep bmi2 invpcid cqm rdt_a rdseed adx smap clflushopt clwb sha_ni xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local clzero irperf xsaveerptr rdpru wbnoinvd amd_ppin brs arat npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold v_vmsave_vmload vgif v_spec_ctrl umip pku ospke vaes vpclmulqdq rdpid overflow_recov succor smca", + "Model:": "1", + "CPU(s):": "128", + "BogoMIPS:": "5200.16", + "L2 cache:": "32 MiB (64 instances)", + "L3 cache:": "256 MiB (8 instances)", + "Stepping:": "1", + "L1d cache:": "2 MiB (64 instances)", + "L1i cache:": "2 MiB (64 instances)", + "Socket(s):": "2", + "Vendor ID:": "AuthenticAMD", + "Byte Order:": "Little Endian", + "CPU family:": "25", + "Model name:": "AMD EPYC 7513 32-Core Processor", + "CPU max MHz:": "3681.6399", + "CPU min MHz:": "1500.0000", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "48 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "AMD-V", + "Frequency boost:": "enabled", + "NUMA node0 CPU(s):": "0-31,64-95", + "NUMA node1 CPU(s):": "32-63,96-127", + "Vulnerability Mds:": "Not affected", + "Core(s) per socket:": "32", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Not affected", + "On-line CPU(s) list:": "0,1,7-31,34-65,67,71-95,98-127", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "2-6,32,33,66,68-70,96,97", + "Vulnerability Meltdown:": "Not affected", + "Vulnerability Retbleed:": "Not affected", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; Retpolines, IBPB conditional, IBRS_FW, STIBP always-on, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "Not affected", + "Vulnerability Mmio stale data:": "Not affected", + "Vulnerability Tsx async abort:": "Not affected", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [ + { + "id": 0, + "name": "NVIDIA RTX A5000", + "uuid": "GPU-79117d4d-91b9-eb61-753d-b86432cca7e8", + "driver": "525.125.06", + "serial": "1325121130125", + "memory_total_MiB": 24564 + } + ], + "num_gpus": 1 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null + }, + { + "proof_id": "6cdf4182-8844-4c68-b6cd-332129204371", + "circuit_name": "circom-multiplier2", + "circuit_id": "596a0973-b6a7-4e8f-b6d6-9f2ddb483f02", + "circuit_type": "circom", + "date_created": "2024-01-15T02:01:17.976Z", + "perform_verify": false, + "status": "Ready", + "compute_time": "P0DT00H00M05.847273S", + "compute_times": { + "prove": 5.660725159570575, + "total": 5.9144034665077925, + "queued": 0.696042, + "clean_up": 0.000287666916847229, + "file_setup": 0.2316605094820261, + "save_results": 0.0032375045120716095, + "generate_witness_c": 0.018273497000336647 + }, + "file_sizes": { + "proof": 707, + "total": 713, + "public": 6, + "total_gb": 7.13e-7, + "total_mb": 0.000713 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "proof_input": null, + "proof": null, + "prover_implementation": { + "name": "GPU Tachyonic", + "smbc": 6, + "smcurve": "spparkx.alt_bn128", + "smreplicate": false + }, + "public": null, + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nopl nonstop_tsc cpuid extd_apicid aperfmperf rapl pni pclmulqdq monitor ssse3 fma cx16 pcid sse4_1 sse4_2 movbe popcnt aes xsave avx f16c rdrand lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt tce topoext perfctr_core perfctr_nb bpext perfctr_llc mwaitx cpb cat_l3 cdp_l3 invpcid_single hw_pstate ssbd mba ibrs ibpb stibp vmmcall fsgsbase bmi1 avx2 smep bmi2 invpcid cqm rdt_a rdseed adx smap clflushopt clwb sha_ni xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local clzero irperf xsaveerptr rdpru wbnoinvd amd_ppin brs arat npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold v_vmsave_vmload vgif v_spec_ctrl umip pku ospke vaes vpclmulqdq rdpid overflow_recov succor smca", + "Model:": "1", + "CPU(s):": "128", + "BogoMIPS:": "5200.16", + "L2 cache:": "32 MiB (64 instances)", + "L3 cache:": "256 MiB (8 instances)", + "Stepping:": "1", + "L1d cache:": "2 MiB (64 instances)", + "L1i cache:": "2 MiB (64 instances)", + "Socket(s):": "2", + "Vendor ID:": "AuthenticAMD", + "Byte Order:": "Little Endian", + "CPU family:": "25", + "Model name:": "AMD EPYC 7513 32-Core Processor", + "CPU max MHz:": "3681.6399", + "CPU min MHz:": "1500.0000", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "48 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "AMD-V", + "Frequency boost:": "enabled", + "NUMA node0 CPU(s):": "0-31,64-95", + "NUMA node1 CPU(s):": "32-63,96-127", + "Vulnerability Mds:": "Not affected", + "Core(s) per socket:": "32", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Not affected", + "On-line CPU(s) list:": "0,1,7-31,34-65,67,71-95,98-127", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "2-6,32,33,66,68-70,96,97", + "Vulnerability Meltdown:": "Not affected", + "Vulnerability Retbleed:": "Not affected", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; Retpolines, IBPB conditional, IBRS_FW, STIBP always-on, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "Not affected", + "Vulnerability Mmio stale data:": "Not affected", + "Vulnerability Tsx async abort:": "Not affected", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [ + { + "id": 0, + "name": "NVIDIA RTX A5000", + "uuid": "GPU-79117d4d-91b9-eb61-753d-b86432cca7e8", + "driver": "525.125.06", + "serial": "1325121130125", + "memory_total_MiB": 24564 + } + ], + "num_gpus": 1 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null + }, + { + "proof_id": "fc45e68e-ccfe-43ab-87c1-f3114dada607", + "circuit_name": "circom-multiplier2", + "circuit_id": "4f5b0304-a53e-45e9-b83f-8e06611dc640", + "circuit_type": "circom", + "date_created": "2024-01-15T01:53:10.576Z", + "perform_verify": false, + "status": "Ready", + "compute_time": "P0DT00H00M05.825130S", + "compute_times": { + "prove": 5.63365101441741, + "total": 5.900212554261088, + "queued": 8.137106, + "clean_up": 0.00022866018116474152, + "file_setup": 0.25481966882944107, + "save_results": 0.0027084313333034515, + "generate_witness_c": 0.008522702381014824 + }, + "file_sizes": { + "proof": 708, + "total": 714, + "public": 6, + "total_gb": 7.14e-7, + "total_mb": 0.000714 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "proof_input": null, + "proof": null, + "prover_implementation": { + "name": "GPU Tachyonic", + "smbc": 6, + "smcurve": "spparkx.alt_bn128", + "smreplicate": false + }, + "public": null, + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nopl nonstop_tsc cpuid extd_apicid aperfmperf rapl pni pclmulqdq monitor ssse3 fma cx16 pcid sse4_1 sse4_2 movbe popcnt aes xsave avx f16c rdrand lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt tce topoext perfctr_core perfctr_nb bpext perfctr_llc mwaitx cpb cat_l3 cdp_l3 invpcid_single hw_pstate ssbd mba ibrs ibpb stibp vmmcall fsgsbase bmi1 avx2 smep bmi2 invpcid cqm rdt_a rdseed adx smap clflushopt clwb sha_ni xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local clzero irperf xsaveerptr rdpru wbnoinvd amd_ppin brs arat npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold v_vmsave_vmload vgif v_spec_ctrl umip pku ospke vaes vpclmulqdq rdpid overflow_recov succor smca", + "Model:": "1", + "CPU(s):": "128", + "BogoMIPS:": "5200.16", + "L2 cache:": "32 MiB (64 instances)", + "L3 cache:": "256 MiB (8 instances)", + "Stepping:": "1", + "L1d cache:": "2 MiB (64 instances)", + "L1i cache:": "2 MiB (64 instances)", + "Socket(s):": "2", + "Vendor ID:": "AuthenticAMD", + "Byte Order:": "Little Endian", + "CPU family:": "25", + "Model name:": "AMD EPYC 7513 32-Core Processor", + "CPU max MHz:": "3681.6399", + "CPU min MHz:": "1500.0000", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "48 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "AMD-V", + "Frequency boost:": "enabled", + "NUMA node0 CPU(s):": "0-31,64-95", + "NUMA node1 CPU(s):": "32-63,96-127", + "Vulnerability Mds:": "Not affected", + "Core(s) per socket:": "32", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Not affected", + "On-line CPU(s) list:": "0,1,7-31,34-65,67,71-95,98-127", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "2-6,32,33,66,68-70,96,97", + "Vulnerability Meltdown:": "Not affected", + "Vulnerability Retbleed:": "Not affected", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; Retpolines, IBPB conditional, IBRS_FW, STIBP always-on, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "Not affected", + "Vulnerability Mmio stale data:": "Not affected", + "Vulnerability Tsx async abort:": "Not affected", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [ + { + "id": 0, + "name": "NVIDIA RTX A5000", + "uuid": "GPU-79117d4d-91b9-eb61-753d-b86432cca7e8", + "driver": "525.125.06", + "serial": "1325121130125", + "memory_total_MiB": 24564 + } + ], + "num_gpus": 1 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null + }, + { + "proof_id": "93f27b36-de2d-4251-b7d6-1c9fccca2f06", + "circuit_name": "circom-multiplier2", + "circuit_id": "696b5f3c-ac4c-4c88-a40a-7b8d5239cb47", + "circuit_type": "circom", + "date_created": "2024-01-15T01:53:04.491Z", + "perform_verify": false, + "status": "Ready", + "compute_time": "P0DT00H00M06.143579S", + "compute_times": { + "prove": 5.624820232391357, + "total": 6.217369062826037, + "queued": 6.939374, + "clean_up": 0.0002844296395778656, + "file_setup": 0.577876154333353, + "save_results": 0.002981366589665413, + "generate_witness_c": 0.011145314201712608 + }, + "file_sizes": { + "proof": 707, + "total": 713, + "public": 6, + "total_gb": 7.13e-7, + "total_mb": 0.000713 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "proof_input": null, + "proof": null, + "prover_implementation": { + "name": "GPU Tachyonic", + "smbc": 6, + "smcurve": "spparkx.alt_bn128", + "smreplicate": false + }, + "public": null, + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nopl nonstop_tsc cpuid extd_apicid aperfmperf rapl pni pclmulqdq monitor ssse3 fma cx16 pcid sse4_1 sse4_2 movbe popcnt aes xsave avx f16c rdrand lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt tce topoext perfctr_core perfctr_nb bpext perfctr_llc mwaitx cpb cat_l3 cdp_l3 invpcid_single hw_pstate ssbd mba ibrs ibpb stibp vmmcall fsgsbase bmi1 avx2 smep bmi2 invpcid cqm rdt_a rdseed adx smap clflushopt clwb sha_ni xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local clzero irperf xsaveerptr rdpru wbnoinvd amd_ppin brs arat npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold v_vmsave_vmload vgif v_spec_ctrl umip pku ospke vaes vpclmulqdq rdpid overflow_recov succor smca", + "Model:": "1", + "CPU(s):": "128", + "BogoMIPS:": "5200.16", + "L2 cache:": "32 MiB (64 instances)", + "L3 cache:": "256 MiB (8 instances)", + "Stepping:": "1", + "L1d cache:": "2 MiB (64 instances)", + "L1i cache:": "2 MiB (64 instances)", + "Socket(s):": "2", + "Vendor ID:": "AuthenticAMD", + "Byte Order:": "Little Endian", + "CPU family:": "25", + "Model name:": "AMD EPYC 7513 32-Core Processor", + "CPU max MHz:": "3681.6399", + "CPU min MHz:": "1500.0000", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "48 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "AMD-V", + "Frequency boost:": "enabled", + "NUMA node0 CPU(s):": "0-31,64-95", + "NUMA node1 CPU(s):": "32-63,96-127", + "Vulnerability Mds:": "Not affected", + "Core(s) per socket:": "32", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Not affected", + "On-line CPU(s) list:": "0,1,7-31,34-65,67,71-95,98-127", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "2-6,32,33,66,68-70,96,97", + "Vulnerability Meltdown:": "Not affected", + "Vulnerability Retbleed:": "Not affected", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; Retpolines, IBPB conditional, IBRS_FW, STIBP always-on, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "Not affected", + "Vulnerability Mmio stale data:": "Not affected", + "Vulnerability Tsx async abort:": "Not affected", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [ + { + "id": 0, + "name": "NVIDIA RTX A5000", + "uuid": "GPU-79117d4d-91b9-eb61-753d-b86432cca7e8", + "driver": "525.125.06", + "serial": "1325121130125", + "memory_total_MiB": 24564 + } + ], + "num_gpus": 1 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null + }, + { + "proof_id": "6c5ed6a4-de8d-4cde-9d04-844c0fae1903", + "circuit_name": "circom-multiplier2", + "circuit_id": "b4a23df2-a7e7-4eb8-9ce1-f9d52a7b5efd", + "circuit_type": "circom", + "date_created": "2024-01-15T01:53:00.837Z", + "perform_verify": false, + "status": "Ready", + "compute_time": "P0DT00H00M05.826862S", + "compute_times": { + "prove": 5.6370560657233, + "total": 5.890984209254384, + "queued": 0.694293, + "clean_up": 0.00031204894185066223, + "file_setup": 0.23010724037885666, + "save_results": 0.0025510434061288834, + "generate_witness_c": 0.02062433399260044 + }, + "file_sizes": { + "proof": 708, + "total": 714, + "public": 6, + "total_gb": 7.14e-7, + "total_mb": 0.000714 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "proof_input": null, + "proof": null, + "prover_implementation": { + "name": "GPU Tachyonic", + "smbc": 6, + "smcurve": "spparkx.alt_bn128", + "smreplicate": false + }, + "public": null, + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nopl nonstop_tsc cpuid extd_apicid aperfmperf rapl pni pclmulqdq monitor ssse3 fma cx16 pcid sse4_1 sse4_2 movbe popcnt aes xsave avx f16c rdrand lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt tce topoext perfctr_core perfctr_nb bpext perfctr_llc mwaitx cpb cat_l3 cdp_l3 invpcid_single hw_pstate ssbd mba ibrs ibpb stibp vmmcall fsgsbase bmi1 avx2 smep bmi2 invpcid cqm rdt_a rdseed adx smap clflushopt clwb sha_ni xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local clzero irperf xsaveerptr rdpru wbnoinvd amd_ppin brs arat npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold v_vmsave_vmload vgif v_spec_ctrl umip pku ospke vaes vpclmulqdq rdpid overflow_recov succor smca", + "Model:": "1", + "CPU(s):": "128", + "BogoMIPS:": "5200.16", + "L2 cache:": "32 MiB (64 instances)", + "L3 cache:": "256 MiB (8 instances)", + "Stepping:": "1", + "L1d cache:": "2 MiB (64 instances)", + "L1i cache:": "2 MiB (64 instances)", + "Socket(s):": "2", + "Vendor ID:": "AuthenticAMD", + "Byte Order:": "Little Endian", + "CPU family:": "25", + "Model name:": "AMD EPYC 7513 32-Core Processor", + "CPU max MHz:": "3681.6399", + "CPU min MHz:": "1500.0000", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "48 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "AMD-V", + "Frequency boost:": "enabled", + "NUMA node0 CPU(s):": "0-31,64-95", + "NUMA node1 CPU(s):": "32-63,96-127", + "Vulnerability Mds:": "Not affected", + "Core(s) per socket:": "32", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Not affected", + "On-line CPU(s) list:": "0,1,7-31,34-65,67,71-95,98-127", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "2-6,32,33,66,68-70,96,97", + "Vulnerability Meltdown:": "Not affected", + "Vulnerability Retbleed:": "Not affected", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; Retpolines, IBPB conditional, IBRS_FW, STIBP always-on, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "Not affected", + "Vulnerability Mmio stale data:": "Not affected", + "Vulnerability Tsx async abort:": "Not affected", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [ + { + "id": 0, + "name": "NVIDIA RTX A5000", + "uuid": "GPU-79117d4d-91b9-eb61-753d-b86432cca7e8", + "driver": "525.125.06", + "serial": "1325121130125", + "memory_total_MiB": 24564 + } + ], + "num_gpus": 1 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null + }, + { + "proof_id": "46048553-2c00-40bc-ae69-76f68d26286e", + "circuit_name": "circom-multiplier2", + "circuit_id": "d492fd4d-7509-45fb-87b3-adef4fd745df", + "circuit_type": "circom", + "date_created": "2024-01-15T01:52:49.479Z", + "perform_verify": false, + "status": "Ready", + "compute_time": "P0DT00H00M05.859514S", + "compute_times": { + "prove": 5.655713541433215, + "total": 5.953595075756311, + "queued": 0.693846, + "clean_up": 0.0002659261226654053, + "file_setup": 0.2661227900534868, + "save_results": 0.002224266529083252, + "generate_witness_c": 0.028907276690006256 + }, + "file_sizes": { + "proof": 707, + "total": 713, + "public": 6, + "total_gb": 7.13e-7, + "total_mb": 0.000713 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "proof_input": null, + "proof": null, + "prover_implementation": { + "name": "GPU Tachyonic", + "smbc": 6, + "smcurve": "spparkx.alt_bn128", + "smreplicate": false + }, + "public": null, + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nopl nonstop_tsc cpuid extd_apicid aperfmperf rapl pni pclmulqdq monitor ssse3 fma cx16 pcid sse4_1 sse4_2 movbe popcnt aes xsave avx f16c rdrand lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt tce topoext perfctr_core perfctr_nb bpext perfctr_llc mwaitx cpb cat_l3 cdp_l3 invpcid_single hw_pstate ssbd mba ibrs ibpb stibp vmmcall fsgsbase bmi1 avx2 smep bmi2 invpcid cqm rdt_a rdseed adx smap clflushopt clwb sha_ni xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local clzero irperf xsaveerptr rdpru wbnoinvd amd_ppin brs arat npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold v_vmsave_vmload vgif v_spec_ctrl umip pku ospke vaes vpclmulqdq rdpid overflow_recov succor smca", + "Model:": "1", + "CPU(s):": "128", + "BogoMIPS:": "5200.16", + "L2 cache:": "32 MiB (64 instances)", + "L3 cache:": "256 MiB (8 instances)", + "Stepping:": "1", + "L1d cache:": "2 MiB (64 instances)", + "L1i cache:": "2 MiB (64 instances)", + "Socket(s):": "2", + "Vendor ID:": "AuthenticAMD", + "Byte Order:": "Little Endian", + "CPU family:": "25", + "Model name:": "AMD EPYC 7513 32-Core Processor", + "CPU max MHz:": "3681.6399", + "CPU min MHz:": "1500.0000", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "48 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "AMD-V", + "Frequency boost:": "enabled", + "NUMA node0 CPU(s):": "0-31,64-95", + "NUMA node1 CPU(s):": "32-63,96-127", + "Vulnerability Mds:": "Not affected", + "Core(s) per socket:": "32", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Not affected", + "On-line CPU(s) list:": "0,1,7-31,34-65,67,71-95,98-127", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "2-6,32,33,66,68-70,96,97", + "Vulnerability Meltdown:": "Not affected", + "Vulnerability Retbleed:": "Not affected", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; Retpolines, IBPB conditional, IBRS_FW, STIBP always-on, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "Not affected", + "Vulnerability Mmio stale data:": "Not affected", + "Vulnerability Tsx async abort:": "Not affected", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [ + { + "id": 0, + "name": "NVIDIA RTX A5000", + "uuid": "GPU-79117d4d-91b9-eb61-753d-b86432cca7e8", + "driver": "525.125.06", + "serial": "1325121130125", + "memory_total_MiB": 24564 + } + ], + "num_gpus": 1 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null + }, + { + "proof_id": "73c4b7e5-e5e8-42de-b0ee-ca5b596c012d", + "circuit_name": "circom-multiplier2", + "circuit_id": "16c96d49-925a-4232-8da4-c43026de854e", + "circuit_type": "circom", + "date_created": "2024-01-15T01:44:52.289Z", + "perform_verify": false, + "status": "Ready", + "compute_time": "P0DT00H00M06.397579S", + "compute_times": { + "prove": 6.192587662488222, + "total": 6.465461192652583, + "queued": 9.005381, + "clean_up": 0.0004098862409591675, + "file_setup": 0.25517357513308525, + "save_results": 0.00757579505443573, + "generate_witness_c": 0.009418565779924393 + }, + "file_sizes": { + "proof": 708, + "total": 714, + "public": 6, + "total_gb": 7.14e-7, + "total_mb": 0.000714 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "proof_input": null, + "proof": null, + "prover_implementation": { + "name": "GPU Tachyonic", + "smbc": 6, + "smcurve": "spparkx.alt_bn128", + "smreplicate": false + }, + "public": null, + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nopl nonstop_tsc cpuid extd_apicid aperfmperf rapl pni pclmulqdq monitor ssse3 fma cx16 pcid sse4_1 sse4_2 movbe popcnt aes xsave avx f16c rdrand lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt tce topoext perfctr_core perfctr_nb bpext perfctr_llc mwaitx cpb cat_l3 cdp_l3 invpcid_single hw_pstate ssbd mba ibrs ibpb stibp vmmcall fsgsbase bmi1 avx2 smep bmi2 invpcid cqm rdt_a rdseed adx smap clflushopt clwb sha_ni xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local clzero irperf xsaveerptr rdpru wbnoinvd amd_ppin brs arat npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold v_vmsave_vmload vgif v_spec_ctrl umip pku ospke vaes vpclmulqdq rdpid overflow_recov succor smca", + "Model:": "1", + "CPU(s):": "128", + "BogoMIPS:": "5200.17", + "L2 cache:": "32 MiB (64 instances)", + "L3 cache:": "256 MiB (8 instances)", + "Stepping:": "1", + "L1d cache:": "2 MiB (64 instances)", + "L1i cache:": "2 MiB (64 instances)", + "Socket(s):": "2", + "Vendor ID:": "AuthenticAMD", + "Byte Order:": "Little Endian", + "CPU family:": "25", + "Model name:": "AMD EPYC 7513 32-Core Processor", + "CPU max MHz:": "3681.6399", + "CPU min MHz:": "1500.0000", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "48 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "AMD-V", + "Frequency boost:": "enabled", + "NUMA node0 CPU(s):": "0-31,64-95", + "NUMA node1 CPU(s):": "32-63,96-127", + "Vulnerability Mds:": "Not affected", + "Core(s) per socket:": "32", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Not affected", + "On-line CPU(s) list:": "0-2,5-32,34-63,65,66,69-96,98-127", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "3,4,33,64,67,68,97", + "Vulnerability Meltdown:": "Not affected", + "Vulnerability Retbleed:": "Not affected", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; Retpolines, IBPB conditional, IBRS_FW, STIBP always-on, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "Not affected", + "Vulnerability Mmio stale data:": "Not affected", + "Vulnerability Tsx async abort:": "Not affected", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [ + { + "id": 0, + "name": "NVIDIA RTX A5000", + "uuid": "GPU-782cd3ea-0ea7-bd75-f8f2-54d75566f9c2", + "driver": "525.125.06", + "serial": "1324921081899", + "memory_total_MiB": 24564 + } + ], + "num_gpus": 1 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null + }, + { + "proof_id": "be7990f4-a06a-4dae-873d-4c331b6c6368", + "circuit_name": "circom-multiplier2", + "circuit_id": "01d61417-f3c8-405d-8327-8676c11b920c", + "circuit_type": "circom", + "date_created": "2024-01-15T01:44:47.933Z", + "perform_verify": false, + "status": "Ready", + "compute_time": "P0DT00H00M06.415701S", + "compute_times": { + "prove": 6.212794356048107, + "total": 6.486022163182497, + "queued": 5.792826, + "clean_up": 0.0002670474350452423, + "file_setup": 0.2612623367458582, + "save_results": 0.002615245059132576, + "generate_witness_c": 0.008822411298751831 + }, + "file_sizes": { + "proof": 705, + "total": 711, + "public": 6, + "total_gb": 7.11e-7, + "total_mb": 0.000711 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "proof_input": null, + "proof": null, + "prover_implementation": { + "name": "GPU Tachyonic", + "smbc": 6, + "smcurve": "spparkx.alt_bn128", + "smreplicate": false + }, + "public": null, + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nopl nonstop_tsc cpuid extd_apicid aperfmperf rapl pni pclmulqdq monitor ssse3 fma cx16 pcid sse4_1 sse4_2 movbe popcnt aes xsave avx f16c rdrand lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt tce topoext perfctr_core perfctr_nb bpext perfctr_llc mwaitx cpb cat_l3 cdp_l3 invpcid_single hw_pstate ssbd mba ibrs ibpb stibp vmmcall fsgsbase bmi1 avx2 smep bmi2 invpcid cqm rdt_a rdseed adx smap clflushopt clwb sha_ni xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local clzero irperf xsaveerptr rdpru wbnoinvd amd_ppin brs arat npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold v_vmsave_vmload vgif v_spec_ctrl umip pku ospke vaes vpclmulqdq rdpid overflow_recov succor smca", + "Model:": "1", + "CPU(s):": "128", + "BogoMIPS:": "5200.17", + "L2 cache:": "32 MiB (64 instances)", + "L3 cache:": "256 MiB (8 instances)", + "Stepping:": "1", + "L1d cache:": "2 MiB (64 instances)", + "L1i cache:": "2 MiB (64 instances)", + "Socket(s):": "2", + "Vendor ID:": "AuthenticAMD", + "Byte Order:": "Little Endian", + "CPU family:": "25", + "Model name:": "AMD EPYC 7513 32-Core Processor", + "CPU max MHz:": "3681.6399", + "CPU min MHz:": "1500.0000", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "48 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "AMD-V", + "Frequency boost:": "enabled", + "NUMA node0 CPU(s):": "0-31,64-95", + "NUMA node1 CPU(s):": "32-63,96-127", + "Vulnerability Mds:": "Not affected", + "Core(s) per socket:": "32", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Not affected", + "On-line CPU(s) list:": "0-2,5-32,34-63,65,66,69-96,98-127", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "3,4,33,64,67,68,97", + "Vulnerability Meltdown:": "Not affected", + "Vulnerability Retbleed:": "Not affected", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; Retpolines, IBPB conditional, IBRS_FW, STIBP always-on, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "Not affected", + "Vulnerability Mmio stale data:": "Not affected", + "Vulnerability Tsx async abort:": "Not affected", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [ + { + "id": 0, + "name": "NVIDIA RTX A5000", + "uuid": "GPU-782cd3ea-0ea7-bd75-f8f2-54d75566f9c2", + "driver": "525.125.06", + "serial": "1324921081899", + "memory_total_MiB": 24564 + } + ], + "num_gpus": 1 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null + }, + { + "proof_id": "26f07d1b-4740-4410-9319-38c99c80c474", + "circuit_name": "circom-multiplier2", + "circuit_id": "03dcdd85-9300-440b-8353-91bea904d8c5", + "circuit_type": "circom", + "date_created": "2024-01-15T01:44:45.581Z", + "perform_verify": false, + "status": "Ready", + "compute_time": "P0DT00H00M06.435592S", + "compute_times": { + "prove": 6.2201853562146425, + "total": 6.502878189086914, + "queued": 0.652189, + "clean_up": 0.00024727731943130493, + "file_setup": 0.2532728649675846, + "save_results": 0.0022235289216041565, + "generate_witness_c": 0.026703273877501488 + }, + "file_sizes": { + "proof": 708, + "total": 714, + "public": 6, + "total_gb": 7.14e-7, + "total_mb": 0.000714 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "proof_input": null, + "proof": null, + "prover_implementation": { + "name": "GPU Tachyonic", + "smbc": 6, + "smcurve": "spparkx.alt_bn128", + "smreplicate": false + }, + "public": null, + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nopl nonstop_tsc cpuid extd_apicid aperfmperf rapl pni pclmulqdq monitor ssse3 fma cx16 pcid sse4_1 sse4_2 movbe popcnt aes xsave avx f16c rdrand lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt tce topoext perfctr_core perfctr_nb bpext perfctr_llc mwaitx cpb cat_l3 cdp_l3 invpcid_single hw_pstate ssbd mba ibrs ibpb stibp vmmcall fsgsbase bmi1 avx2 smep bmi2 invpcid cqm rdt_a rdseed adx smap clflushopt clwb sha_ni xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local clzero irperf xsaveerptr rdpru wbnoinvd amd_ppin brs arat npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold v_vmsave_vmload vgif v_spec_ctrl umip pku ospke vaes vpclmulqdq rdpid overflow_recov succor smca", + "Model:": "1", + "CPU(s):": "128", + "BogoMIPS:": "5200.17", + "L2 cache:": "32 MiB (64 instances)", + "L3 cache:": "256 MiB (8 instances)", + "Stepping:": "1", + "L1d cache:": "2 MiB (64 instances)", + "L1i cache:": "2 MiB (64 instances)", + "Socket(s):": "2", + "Vendor ID:": "AuthenticAMD", + "Byte Order:": "Little Endian", + "CPU family:": "25", + "Model name:": "AMD EPYC 7513 32-Core Processor", + "CPU max MHz:": "3681.6399", + "CPU min MHz:": "1500.0000", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "48 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "AMD-V", + "Frequency boost:": "enabled", + "NUMA node0 CPU(s):": "0-31,64-95", + "NUMA node1 CPU(s):": "32-63,96-127", + "Vulnerability Mds:": "Not affected", + "Core(s) per socket:": "32", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Not affected", + "On-line CPU(s) list:": "0-2,5-32,34-63,65,66,69-96,98-127", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "3,4,33,64,67,68,97", + "Vulnerability Meltdown:": "Not affected", + "Vulnerability Retbleed:": "Not affected", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; Retpolines, IBPB conditional, IBRS_FW, STIBP always-on, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "Not affected", + "Vulnerability Mmio stale data:": "Not affected", + "Vulnerability Tsx async abort:": "Not affected", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [ + { + "id": 0, + "name": "NVIDIA RTX A5000", + "uuid": "GPU-782cd3ea-0ea7-bd75-f8f2-54d75566f9c2", + "driver": "525.125.06", + "serial": "1324921081899", + "memory_total_MiB": 24564 + } + ], + "num_gpus": 1 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null + }, + { + "proof_id": "f0e9a8ef-a9f7-45a1-9d24-25822ff56d47", + "circuit_name": "circom-multiplier2", + "circuit_id": "a7c1a9a9-2df3-4f76-9be0-1bb8456c22db", + "circuit_type": "circom", + "date_created": "2024-01-15T01:44:29.960Z", + "perform_verify": false, + "status": "Ready", + "compute_time": "P0DT00H00M06.484678S", + "compute_times": { + "prove": 6.229190753772855, + "total": 6.550728781148791, + "queued": 0.657459, + "clean_up": 0.0002836957573890686, + "file_setup": 0.2656614538282156, + "save_results": 0.0025900565087795258, + "generate_witness_c": 0.052704716101288795 + }, + "file_sizes": { + "proof": 710, + "total": 716, + "public": 6, + "total_gb": 7.16e-7, + "total_mb": 0.000716 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "proof_input": null, + "proof": null, + "prover_implementation": { + "name": "GPU Tachyonic", + "smbc": 6, + "smcurve": "spparkx.alt_bn128", + "smreplicate": false + }, + "public": null, + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nopl nonstop_tsc cpuid extd_apicid aperfmperf rapl pni pclmulqdq monitor ssse3 fma cx16 pcid sse4_1 sse4_2 movbe popcnt aes xsave avx f16c rdrand lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt tce topoext perfctr_core perfctr_nb bpext perfctr_llc mwaitx cpb cat_l3 cdp_l3 invpcid_single hw_pstate ssbd mba ibrs ibpb stibp vmmcall fsgsbase bmi1 avx2 smep bmi2 invpcid cqm rdt_a rdseed adx smap clflushopt clwb sha_ni xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local clzero irperf xsaveerptr rdpru wbnoinvd amd_ppin brs arat npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold v_vmsave_vmload vgif v_spec_ctrl umip pku ospke vaes vpclmulqdq rdpid overflow_recov succor smca", + "Model:": "1", + "CPU(s):": "128", + "BogoMIPS:": "5200.17", + "L2 cache:": "32 MiB (64 instances)", + "L3 cache:": "256 MiB (8 instances)", + "Stepping:": "1", + "L1d cache:": "2 MiB (64 instances)", + "L1i cache:": "2 MiB (64 instances)", + "Socket(s):": "2", + "Vendor ID:": "AuthenticAMD", + "Byte Order:": "Little Endian", + "CPU family:": "25", + "Model name:": "AMD EPYC 7513 32-Core Processor", + "CPU max MHz:": "3681.6399", + "CPU min MHz:": "1500.0000", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "48 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "AMD-V", + "Frequency boost:": "enabled", + "NUMA node0 CPU(s):": "0-31,64-95", + "NUMA node1 CPU(s):": "32-63,96-127", + "Vulnerability Mds:": "Not affected", + "Core(s) per socket:": "32", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Not affected", + "On-line CPU(s) list:": "0-2,5-32,34-63,65,66,69-96,98-127", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "3,4,33,64,67,68,97", + "Vulnerability Meltdown:": "Not affected", + "Vulnerability Retbleed:": "Not affected", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; Retpolines, IBPB conditional, IBRS_FW, STIBP always-on, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "Not affected", + "Vulnerability Mmio stale data:": "Not affected", + "Vulnerability Tsx async abort:": "Not affected", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [ + { + "id": 0, + "name": "NVIDIA RTX A5000", + "uuid": "GPU-782cd3ea-0ea7-bd75-f8f2-54d75566f9c2", + "driver": "525.125.06", + "serial": "1324921081899", + "memory_total_MiB": 24564 + } + ], + "num_gpus": 1 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null + }, + { + "proof_id": "f8406ce7-d14a-4fa6-9677-1d57449c0e92", + "circuit_name": "circom-multiplier2", + "circuit_id": "723f695f-ceca-435e-9423-fa9623b26962", + "circuit_type": "circom", + "date_created": "2024-01-15T01:28:35.809Z", + "perform_verify": false, + "status": "Ready", + "compute_time": "P0DT00H00M06.078477S", + "compute_times": { + "prove": 5.902009887620807, + "total": 6.183570355176926, + "queued": 6.122612, + "clean_up": 0.0002631358802318573, + "file_setup": 0.26931122317910194, + "save_results": 0.0026443954557180405, + "generate_witness_c": 0.009012777358293533 + }, + "file_sizes": { + "proof": 708, + "total": 714, + "public": 6, + "total_gb": 7.14e-7, + "total_mb": 0.000714 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "proof_input": null, + "proof": null, + "prover_implementation": { + "name": "GPU Tachyonic", + "smbc": 6, + "smcurve": "spparkx.alt_bn128", + "smreplicate": false + }, + "public": null, + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nopl nonstop_tsc cpuid extd_apicid aperfmperf rapl pni pclmulqdq monitor ssse3 fma cx16 pcid sse4_1 sse4_2 movbe popcnt aes xsave avx f16c rdrand lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt tce topoext perfctr_core perfctr_nb bpext perfctr_llc mwaitx cpb cat_l3 cdp_l3 invpcid_single hw_pstate ssbd mba ibrs ibpb stibp vmmcall fsgsbase bmi1 avx2 smep bmi2 invpcid cqm rdt_a rdseed adx smap clflushopt clwb sha_ni xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local clzero irperf xsaveerptr rdpru wbnoinvd amd_ppin brs arat npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold v_vmsave_vmload vgif v_spec_ctrl umip pku ospke vaes vpclmulqdq rdpid overflow_recov succor smca", + "Model:": "1", + "CPU(s):": "128", + "BogoMIPS:": "5199.98", + "L2 cache:": "32 MiB (64 instances)", + "L3 cache:": "256 MiB (8 instances)", + "Stepping:": "1", + "L1d cache:": "2 MiB (64 instances)", + "L1i cache:": "2 MiB (64 instances)", + "Socket(s):": "2", + "Vendor ID:": "AuthenticAMD", + "Byte Order:": "Little Endian", + "CPU family:": "25", + "Model name:": "AMD EPYC 7513 32-Core Processor", + "CPU max MHz:": "3681.6399", + "CPU min MHz:": "1500.0000", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "48 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "AMD-V", + "Frequency boost:": "enabled", + "NUMA node0 CPU(s):": "0-31,64-95", + "NUMA node1 CPU(s):": "32-63,96-127", + "Vulnerability Mds:": "Not affected", + "Core(s) per socket:": "32", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Not affected", + "On-line CPU(s) list:": "0,4-32,34-63,69-96,98-127", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "1-3,33,64-68,97", + "Vulnerability Meltdown:": "Not affected", + "Vulnerability Retbleed:": "Not affected", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; Retpolines, IBPB conditional, IBRS_FW, STIBP always-on, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "Not affected", + "Vulnerability Mmio stale data:": "Not affected", + "Vulnerability Tsx async abort:": "Not affected", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [ + { + "id": 0, + "name": "NVIDIA RTX A5000", + "uuid": "GPU-3ae041c5-a9ec-129a-cbf6-33b374bc92c0", + "driver": "525.125.06", + "serial": "1325121129330", + "memory_total_MiB": 24564 + } + ], + "num_gpus": 1 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null + }, + { + "proof_id": "bc95c37e-6335-4962-a45e-ce0e92856220", + "circuit_name": "circom-multiplier2", + "circuit_id": "1f4e0b8e-d4a1-40fa-b32b-a8d263ca516f", + "circuit_type": "circom", + "date_created": "2024-01-15T01:28:33.921Z", + "perform_verify": false, + "status": "Ready", + "compute_time": "P0DT00H00M06.160198S", + "compute_times": { + "prove": 5.963096780702472, + "total": 6.232641618698835, + "queued": 0.650062, + "clean_up": 0.00031645968556404114, + "file_setup": 0.24531847052276134, + "save_results": 0.003001151606440544, + "generate_witness_c": 0.020530829206109047 + }, + "file_sizes": { + "proof": 708, + "total": 714, + "public": 6, + "total_gb": 7.14e-7, + "total_mb": 0.000714 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "proof_input": null, + "proof": null, + "prover_implementation": { + "name": "GPU Tachyonic", + "smbc": 6, + "smcurve": "spparkx.alt_bn128", + "smreplicate": false + }, + "public": null, + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nopl nonstop_tsc cpuid extd_apicid aperfmperf rapl pni pclmulqdq monitor ssse3 fma cx16 pcid sse4_1 sse4_2 movbe popcnt aes xsave avx f16c rdrand lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt tce topoext perfctr_core perfctr_nb bpext perfctr_llc mwaitx cpb cat_l3 cdp_l3 invpcid_single hw_pstate ssbd mba ibrs ibpb stibp vmmcall fsgsbase bmi1 avx2 smep bmi2 invpcid cqm rdt_a rdseed adx smap clflushopt clwb sha_ni xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local clzero irperf xsaveerptr rdpru wbnoinvd amd_ppin brs arat npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold v_vmsave_vmload vgif v_spec_ctrl umip pku ospke vaes vpclmulqdq rdpid overflow_recov succor smca", + "Model:": "1", + "CPU(s):": "128", + "BogoMIPS:": "5199.98", + "L2 cache:": "32 MiB (64 instances)", + "L3 cache:": "256 MiB (8 instances)", + "Stepping:": "1", + "L1d cache:": "2 MiB (64 instances)", + "L1i cache:": "2 MiB (64 instances)", + "Socket(s):": "2", + "Vendor ID:": "AuthenticAMD", + "Byte Order:": "Little Endian", + "CPU family:": "25", + "Model name:": "AMD EPYC 7513 32-Core Processor", + "CPU max MHz:": "3681.6399", + "CPU min MHz:": "1500.0000", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "48 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "AMD-V", + "Frequency boost:": "enabled", + "NUMA node0 CPU(s):": "0-31,64-95", + "NUMA node1 CPU(s):": "32-63,96-127", + "Vulnerability Mds:": "Not affected", + "Core(s) per socket:": "32", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Not affected", + "On-line CPU(s) list:": "0,4-32,34-63,69-96,98-127", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "1-3,33,64-68,97", + "Vulnerability Meltdown:": "Not affected", + "Vulnerability Retbleed:": "Not affected", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; Retpolines, IBPB conditional, IBRS_FW, STIBP always-on, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "Not affected", + "Vulnerability Mmio stale data:": "Not affected", + "Vulnerability Tsx async abort:": "Not affected", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [ + { + "id": 0, + "name": "NVIDIA RTX A5000", + "uuid": "GPU-3ae041c5-a9ec-129a-cbf6-33b374bc92c0", + "driver": "525.125.06", + "serial": "1325121129330", + "memory_total_MiB": 24564 + } + ], + "num_gpus": 1 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null + }, + { + "proof_id": "92e2e996-b3cf-465f-a4c0-978a5566287d", + "circuit_name": "circom-multiplier2", + "circuit_id": "36ed7747-01de-4272-bd8e-e28802d5c668", + "circuit_type": "circom", + "date_created": "2024-01-15T01:25:52.815Z", + "perform_verify": false, + "status": "Ready", + "compute_time": "P0DT00H00M06.175574S", + "compute_times": { + "prove": 5.9231167789548635, + "total": 6.24663576297462, + "queued": 0.698281, + "clean_up": 0.0002771075814962387, + "file_setup": 0.29058355651795864, + "save_results": 0.002341846004128456, + "generate_witness_c": 0.029908066615462303 + }, + "file_sizes": { + "proof": 707, + "total": 713, + "public": 6, + "total_gb": 7.13e-7, + "total_mb": 0.000713 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "proof_input": null, + "proof": null, + "prover_implementation": { + "name": "GPU Tachyonic", + "smbc": 6, + "smcurve": "spparkx.alt_bn128", + "smreplicate": false + }, + "public": null, + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nopl nonstop_tsc cpuid extd_apicid aperfmperf rapl pni pclmulqdq monitor ssse3 fma cx16 pcid sse4_1 sse4_2 movbe popcnt aes xsave avx f16c rdrand lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt tce topoext perfctr_core perfctr_nb bpext perfctr_llc mwaitx cpb cat_l3 cdp_l3 invpcid_single hw_pstate ssbd mba ibrs ibpb stibp vmmcall fsgsbase bmi1 avx2 smep bmi2 invpcid cqm rdt_a rdseed adx smap clflushopt clwb sha_ni xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local clzero irperf xsaveerptr rdpru wbnoinvd amd_ppin brs arat npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold v_vmsave_vmload vgif v_spec_ctrl umip pku ospke vaes vpclmulqdq rdpid overflow_recov succor smca", + "Model:": "1", + "CPU(s):": "128", + "BogoMIPS:": "5199.98", + "L2 cache:": "32 MiB (64 instances)", + "L3 cache:": "256 MiB (8 instances)", + "Stepping:": "1", + "L1d cache:": "2 MiB (64 instances)", + "L1i cache:": "2 MiB (64 instances)", + "Socket(s):": "2", + "Vendor ID:": "AuthenticAMD", + "Byte Order:": "Little Endian", + "CPU family:": "25", + "Model name:": "AMD EPYC 7513 32-Core Processor", + "CPU max MHz:": "3681.6399", + "CPU min MHz:": "1500.0000", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "48 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "AMD-V", + "Frequency boost:": "enabled", + "NUMA node0 CPU(s):": "0-31,64-95", + "NUMA node1 CPU(s):": "32-63,96-127", + "Vulnerability Mds:": "Not affected", + "Core(s) per socket:": "32", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Not affected", + "On-line CPU(s) list:": "0,4-32,34-63,69-96,98-127", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "1-3,33,64-68,97", + "Vulnerability Meltdown:": "Not affected", + "Vulnerability Retbleed:": "Not affected", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; Retpolines, IBPB conditional, IBRS_FW, STIBP always-on, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "Not affected", + "Vulnerability Mmio stale data:": "Not affected", + "Vulnerability Tsx async abort:": "Not affected", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [ + { + "id": 0, + "name": "NVIDIA RTX A5000", + "uuid": "GPU-3ae041c5-a9ec-129a-cbf6-33b374bc92c0", + "driver": "525.125.06", + "serial": "1325121129330", + "memory_total_MiB": 24564 + } + ], + "num_gpus": 1 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null + }, + { + "proof_id": "82de6aa2-4108-43aa-85f0-0bc9c8e6fb8e", + "circuit_name": "circom-multiplier2", + "circuit_id": "eb7be2ed-0d7e-4036-a5dc-3b36b0d9907c", + "circuit_type": "circom", + "date_created": "2024-01-15T01:24:19.052Z", + "perform_verify": false, + "status": "Ready", + "compute_time": "P0DT00H00M06.115018S", + "compute_times": { + "prove": 5.91022140905261, + "total": 6.194757051765919, + "queued": 0.684503, + "clean_up": 0.00032767653465270996, + "file_setup": 0.2622530199587345, + "save_results": 0.003049323335289955, + "generate_witness_c": 0.018631482496857643 + }, + "file_sizes": { + "proof": 707, + "total": 713, + "public": 6, + "total_gb": 7.13e-7, + "total_mb": 0.000713 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "proof_input": null, + "proof": null, + "prover_implementation": { + "name": "GPU Tachyonic", + "smbc": 6, + "smcurve": "spparkx.alt_bn128", + "smreplicate": false + }, + "public": null, + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nopl nonstop_tsc cpuid extd_apicid aperfmperf rapl pni pclmulqdq monitor ssse3 fma cx16 pcid sse4_1 sse4_2 movbe popcnt aes xsave avx f16c rdrand lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt tce topoext perfctr_core perfctr_nb bpext perfctr_llc mwaitx cpb cat_l3 cdp_l3 invpcid_single hw_pstate ssbd mba ibrs ibpb stibp vmmcall fsgsbase bmi1 avx2 smep bmi2 invpcid cqm rdt_a rdseed adx smap clflushopt clwb sha_ni xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local clzero irperf xsaveerptr rdpru wbnoinvd amd_ppin brs arat npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold v_vmsave_vmload vgif v_spec_ctrl umip pku ospke vaes vpclmulqdq rdpid overflow_recov succor smca", + "Model:": "1", + "CPU(s):": "128", + "BogoMIPS:": "5199.98", + "L2 cache:": "32 MiB (64 instances)", + "L3 cache:": "256 MiB (8 instances)", + "Stepping:": "1", + "L1d cache:": "2 MiB (64 instances)", + "L1i cache:": "2 MiB (64 instances)", + "Socket(s):": "2", + "Vendor ID:": "AuthenticAMD", + "Byte Order:": "Little Endian", + "CPU family:": "25", + "Model name:": "AMD EPYC 7513 32-Core Processor", + "CPU max MHz:": "3681.6399", + "CPU min MHz:": "1500.0000", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "48 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "AMD-V", + "Frequency boost:": "enabled", + "NUMA node0 CPU(s):": "0-31,64-95", + "NUMA node1 CPU(s):": "32-63,96-127", + "Vulnerability Mds:": "Not affected", + "Core(s) per socket:": "32", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Not affected", + "On-line CPU(s) list:": "0,4-32,34-63,69-96,98-127", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "1-3,33,64-68,97", + "Vulnerability Meltdown:": "Not affected", + "Vulnerability Retbleed:": "Not affected", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; Retpolines, IBPB conditional, IBRS_FW, STIBP always-on, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "Not affected", + "Vulnerability Mmio stale data:": "Not affected", + "Vulnerability Tsx async abort:": "Not affected", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [ + { + "id": 0, + "name": "NVIDIA RTX A5000", + "uuid": "GPU-3ae041c5-a9ec-129a-cbf6-33b374bc92c0", + "driver": "525.125.06", + "serial": "1325121129330", + "memory_total_MiB": 24564 + } + ], + "num_gpus": 1 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null + }, + { + "proof_id": "250bec19-3e55-44aa-8259-e0c16f81740a", + "circuit_name": "circom-multiplier2", + "circuit_id": "11e78b06-44fb-44b4-b85f-d681e677482c", + "circuit_type": "circom", + "date_created": "2024-01-15T01:21:13.615Z", + "perform_verify": false, + "status": "Ready", + "compute_time": "P0DT00H00M06.117480S", + "compute_times": { + "prove": 5.914364781230688, + "total": 6.191053604707122, + "queued": 15.514631, + "clean_up": 0.00021071918308734894, + "file_setup": 0.24732953310012817, + "save_results": 0.0019527468830347061, + "generate_witness_c": 0.026822445914149284 + }, + "file_sizes": { + "proof": 707, + "total": 713, + "public": 6, + "total_gb": 7.13e-7, + "total_mb": 0.000713 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "proof_input": null, + "proof": null, + "prover_implementation": { + "name": "GPU Tachyonic", + "smbc": 6, + "smcurve": "spparkx.alt_bn128", + "smreplicate": false + }, + "public": null, + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nopl nonstop_tsc cpuid extd_apicid aperfmperf rapl pni pclmulqdq monitor ssse3 fma cx16 pcid sse4_1 sse4_2 movbe popcnt aes xsave avx f16c rdrand lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt tce topoext perfctr_core perfctr_nb bpext perfctr_llc mwaitx cpb cat_l3 cdp_l3 invpcid_single hw_pstate ssbd mba ibrs ibpb stibp vmmcall fsgsbase bmi1 avx2 smep bmi2 invpcid cqm rdt_a rdseed adx smap clflushopt clwb sha_ni xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local clzero irperf xsaveerptr rdpru wbnoinvd amd_ppin brs arat npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold v_vmsave_vmload vgif v_spec_ctrl umip pku ospke vaes vpclmulqdq rdpid overflow_recov succor smca", + "Model:": "1", + "CPU(s):": "128", + "BogoMIPS:": "5199.98", + "L2 cache:": "32 MiB (64 instances)", + "L3 cache:": "256 MiB (8 instances)", + "Stepping:": "1", + "L1d cache:": "2 MiB (64 instances)", + "L1i cache:": "2 MiB (64 instances)", + "Socket(s):": "2", + "Vendor ID:": "AuthenticAMD", + "Byte Order:": "Little Endian", + "CPU family:": "25", + "Model name:": "AMD EPYC 7513 32-Core Processor", + "CPU max MHz:": "3681.6399", + "CPU min MHz:": "1500.0000", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "48 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "AMD-V", + "Frequency boost:": "enabled", + "NUMA node0 CPU(s):": "0-31,64-95", + "NUMA node1 CPU(s):": "32-63,96-127", + "Vulnerability Mds:": "Not affected", + "Core(s) per socket:": "32", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Not affected", + "On-line CPU(s) list:": "0,4-32,34-63,69-96,98-127", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "1-3,33,64-68,97", + "Vulnerability Meltdown:": "Not affected", + "Vulnerability Retbleed:": "Not affected", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; Retpolines, IBPB conditional, IBRS_FW, STIBP always-on, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "Not affected", + "Vulnerability Mmio stale data:": "Not affected", + "Vulnerability Tsx async abort:": "Not affected", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [ + { + "id": 0, + "name": "NVIDIA RTX A5000", + "uuid": "GPU-3ae041c5-a9ec-129a-cbf6-33b374bc92c0", + "driver": "525.125.06", + "serial": "1325121129330", + "memory_total_MiB": 24564 + } + ], + "num_gpus": 1 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null + } + ], + "rawHeaders": [ + "Content-Length", + "112612", + "Content-Type", + "application/json; charset=utf-8", + "Date", + "Mon, 15 Jan 2024 13:31:27 GMT", + "Referrer-Policy", + "same-origin", + "Server", + "gunicorn", + "Vary", + "Cookie, origin", + "X-Content-Type-Options", + "nosniff", + "X-Frame-Options", + "SAMEORIGIN" + ], + "responseIsBinary": false + }, + { + "scope": "https://sindri.app:443", + "method": "GET", + "path": "/api/v1/circuit/list?include_verification_key=false", + "body": "", + "status": 200, + "response": [ + { + "circuit_id": "3e42bb6b-fb5c-438f-b93d-491b396b6f23", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-15T13:31:26.518Z", + "proving_scheme": "groth16", + "status": "Queued", + "compute_time": null, + "compute_times": null, + "file_sizes": { + "total": 529, + "total_gb": 5.29e-7, + "total_mb": 0.000529, + "code.tar.gz": 529 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tgz", + "worker_hardware": null, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": null, + "num_constraints": null, + "num_outputs": null, + "num_private_inputs": null, + "num_public_inputs": null, + "num_wires": null, + "trusted_setup_file": "", + "witness_compiler": "c++" + }, + { + "circuit_id": "08356d78-f494-441e-bfdb-b9f1c33d1c79", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-15T13:31:26.040Z", + "proving_scheme": "groth16", + "status": "Queued", + "compute_time": null, + "compute_times": null, + "file_sizes": { + "total": 529, + "total_gb": 5.29e-7, + "total_mb": 0.000529, + "code.tar.gz": 529 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tgz", + "worker_hardware": null, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": null, + "num_constraints": null, + "num_outputs": null, + "num_private_inputs": null, + "num_public_inputs": null, + "num_wires": null, + "trusted_setup_file": "", + "witness_compiler": "c++" + }, + { + "circuit_id": "0c79ed16-2255-42d7-9d50-69b2a48e7a7e", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-15T13:31:25.692Z", + "proving_scheme": "groth16", + "status": "In Progress", + "compute_time": null, + "compute_times": { + "total": 0.00043579190969467163, + "queued": 1.082236 + }, + "file_sizes": { + "total": 529, + "total_gb": 5.29e-7, + "total_mb": 0.000529, + "code.tar.gz": 529 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tgz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", + "Model:": "85", + "CPU(s):": "96", + "BogoMIPS:": "5400.00", + "L2 cache:": "48 MiB (48 instances)", + "L3 cache:": "66 MiB (2 instances)", + "Stepping:": "4", + "L1d cache:": "1.5 MiB (48 instances)", + "L1i cache:": "1.5 MiB (48 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "46 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", + "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", + "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Core(s) per socket:": "24", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", + "On-line CPU(s) list:": "0,1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41-49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89-95", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88", + "Vulnerability Meltdown:": "Mitigation; PTI", + "Vulnerability Retbleed:": "Mitigation; IBRS", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", + "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": null, + "num_constraints": null, + "num_outputs": null, + "num_private_inputs": null, + "num_public_inputs": null, + "num_wires": null, + "trusted_setup_file": "", + "witness_compiler": "c++" + }, + { + "circuit_id": "1f9793dd-fc3a-40a7-8054-cef057abd541", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-15T13:31:25.616Z", + "proving_scheme": "groth16", + "status": "In Progress", + "compute_time": null, + "compute_times": { + "total": 0.00030360370874404907, + "queued": 1.091233 + }, + "file_sizes": { + "total": 529, + "total_gb": 5.29e-7, + "total_mb": 0.000529, + "code.tar.gz": 529 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tgz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", + "Model:": "85", + "CPU(s):": "96", + "BogoMIPS:": "5400.00", + "L2 cache:": "48 MiB (48 instances)", + "L3 cache:": "66 MiB (2 instances)", + "Stepping:": "4", + "L1d cache:": "1.5 MiB (48 instances)", + "L1i cache:": "1.5 MiB (48 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "46 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", + "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", + "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Core(s) per socket:": "24", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", + "On-line CPU(s) list:": "0,1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41-49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89-95", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88", + "Vulnerability Meltdown:": "Mitigation; PTI", + "Vulnerability Retbleed:": "Mitigation; IBRS", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", + "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": null, + "num_constraints": null, + "num_outputs": null, + "num_private_inputs": null, + "num_public_inputs": null, + "num_wires": null, + "trusted_setup_file": "", + "witness_compiler": "c++" + }, + { + "circuit_id": "4e4d2d46-51d3-4194-b234-bdbb6a4f90fa", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-15T13:31:24.753Z", + "proving_scheme": "groth16", + "status": "In Progress", + "compute_time": null, + "compute_times": { + "total": 0.0004055500030517578, + "queued": 1.196517 + }, + "file_sizes": { + "total": 497, + "total_gb": 4.97e-7, + "total_mb": 0.000497, + "code.tar.gz": 497 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", + "Model:": "85", + "CPU(s):": "96", + "BogoMIPS:": "5400.00", + "L2 cache:": "48 MiB (48 instances)", + "L3 cache:": "66 MiB (2 instances)", + "Stepping:": "4", + "L1d cache:": "1.5 MiB (48 instances)", + "L1i cache:": "1.5 MiB (48 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "46 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", + "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", + "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Core(s) per socket:": "24", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", + "On-line CPU(s) list:": "0,1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41-49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89-95", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88", + "Vulnerability Meltdown:": "Mitigation; PTI", + "Vulnerability Retbleed:": "Mitigation; IBRS", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", + "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": null, + "num_constraints": null, + "num_outputs": null, + "num_private_inputs": null, + "num_public_inputs": null, + "num_wires": null, + "trusted_setup_file": "", + "witness_compiler": "c++" + }, + { + "circuit_id": "4cb330c7-66c6-4cf5-a68f-c4ef96ac9f2f", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-15T13:31:24.744Z", + "proving_scheme": "groth16", + "status": "In Progress", + "compute_time": null, + "compute_times": { + "total": 0.000584769994020462, + "queued": 1.213266 + }, + "file_sizes": { + "total": 499, + "total_gb": 4.99e-7, + "total_mb": 0.000499, + "code.tar.gz": 499 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", + "Model:": "85", + "CPU(s):": "96", + "BogoMIPS:": "5400.00", + "L2 cache:": "48 MiB (48 instances)", + "L3 cache:": "66 MiB (2 instances)", + "Stepping:": "4", + "L1d cache:": "1.5 MiB (48 instances)", + "L1i cache:": "1.5 MiB (48 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "46 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", + "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", + "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Core(s) per socket:": "24", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", + "On-line CPU(s) list:": "0,1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41-49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89-95", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88", + "Vulnerability Meltdown:": "Mitigation; PTI", + "Vulnerability Retbleed:": "Mitigation; IBRS", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", + "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": null, + "num_constraints": null, + "num_outputs": null, + "num_private_inputs": null, + "num_public_inputs": null, + "num_wires": null, + "trusted_setup_file": "", + "witness_compiler": "c++" + }, + { + "circuit_id": "9bbe03cb-c39f-42df-b91c-ad40785769a7", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-15T13:28:53.977Z", + "proving_scheme": "groth16", + "status": "Ready", + "compute_time": "P0DT00H00M08.046214S", + "compute_times": { + "total": 8.123173575848341, + "queued": 37.732277, + "clean_up": 0.0018738601356744766, + "create_cpp": 0.05183893069624901, + "file_setup": 0.2543136142194271, + "compile_cpp": 4.950523996725678, + "create_r1cs": 0.015572600066661835, + "save_results": 0.005953660234808922, + "get_r1cs_info": 0.0006317459046840668, + "groth16_setup": 1.518635692074895, + "export_verification_key": 1.321570660918951, + "download_trusted_setup_file": 0.0017584580928087234 + }, + "file_sizes": { + "total": 225418, + "circuit": 213240, + "total_gb": 0.000225418, + "total_mb": 0.225418, + "circuit.dat": 6176, + "code.tar.gz": 497, + "circuit.zkey": 2580, + "verification_key": 2925 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", + "Model:": "85", + "CPU(s):": "96", + "BogoMIPS:": "5400.00", + "L2 cache:": "48 MiB (48 instances)", + "L3 cache:": "66 MiB (2 instances)", + "Stepping:": "4", + "L1d cache:": "1.5 MiB (48 instances)", + "L1i cache:": "1.5 MiB (48 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "46 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", + "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", + "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Core(s) per socket:": "24", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", + "On-line CPU(s) list:": "0,1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41-49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89-95", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88", + "Vulnerability Meltdown:": "Mitigation; PTI", + "Vulnerability Retbleed:": "Mitigation; IBRS", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", + "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": 0, + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0, + "num_wires": 4, + "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", + "witness_compiler": "c++" + }, + { + "circuit_id": "c0575a32-e974-4036-8343-02890b5dd43f", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-15T13:28:53.276Z", + "proving_scheme": "groth16", + "status": "Ready", + "compute_time": "P0DT00H00M08.025239S", + "compute_times": { + "total": 8.103251675143838, + "queued": 37.071617, + "clean_up": 0.0019434932619333267, + "create_cpp": 0.05545089207589626, + "file_setup": 0.2586412336677313, + "compile_cpp": 4.959581568837166, + "create_r1cs": 0.017252666875720024, + "save_results": 0.005369381979107857, + "get_r1cs_info": 0.0007654130458831787, + "groth16_setup": 1.369353175163269, + "export_verification_key": 1.4320305939763784, + "download_trusted_setup_file": 0.0025755316019058228 + }, + "file_sizes": { + "total": 225418, + "circuit": 213240, + "total_gb": 0.000225418, + "total_mb": 0.225418, + "circuit.dat": 6176, + "code.tar.gz": 497, + "circuit.zkey": 2580, + "verification_key": 2925 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", + "Model:": "85", + "CPU(s):": "96", + "BogoMIPS:": "5400.00", + "L2 cache:": "48 MiB (48 instances)", + "L3 cache:": "66 MiB (2 instances)", + "Stepping:": "4", + "L1d cache:": "1.5 MiB (48 instances)", + "L1i cache:": "1.5 MiB (48 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "46 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", + "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", + "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Core(s) per socket:": "24", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", + "On-line CPU(s) list:": "0,1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41-49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89-95", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88", + "Vulnerability Meltdown:": "Mitigation; PTI", + "Vulnerability Retbleed:": "Mitigation; IBRS", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", + "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": 0, + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0, + "num_wires": 4, + "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", + "witness_compiler": "c++" + }, + { + "circuit_id": "ddd1b9a9-83e6-41d1-8936-3bff88aa6921", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-15T13:28:53.179Z", + "proving_scheme": "groth16", + "status": "Ready", + "compute_time": "P0DT00H00M08.049708S", + "compute_times": { + "total": 8.133471051231027, + "queued": 33.561144, + "clean_up": 0.001717088744044304, + "create_cpp": 0.04866603575646877, + "file_setup": 0.239702383056283, + "compile_cpp": 5.001192836090922, + "create_r1cs": 0.009522216394543648, + "save_results": 0.006353143602609634, + "get_r1cs_info": 0.000697137787938118, + "groth16_setup": 1.4610587637871504, + "export_verification_key": 1.361605390906334, + "download_trusted_setup_file": 0.002519451081752777 + }, + "file_sizes": { + "total": 225418, + "circuit": 213240, + "total_gb": 0.000225418, + "total_mb": 0.225418, + "circuit.dat": 6176, + "code.tar.gz": 497, + "circuit.zkey": 2580, + "verification_key": 2925 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", + "Model:": "85", + "CPU(s):": "96", + "BogoMIPS:": "5400.00", + "L2 cache:": "48 MiB (48 instances)", + "L3 cache:": "66 MiB (2 instances)", + "Stepping:": "4", + "L1d cache:": "1.5 MiB (48 instances)", + "L1i cache:": "1.5 MiB (48 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "46 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", + "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", + "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Core(s) per socket:": "24", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", + "On-line CPU(s) list:": "0,1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41-49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89-95", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88", + "Vulnerability Meltdown:": "Mitigation; PTI", + "Vulnerability Retbleed:": "Mitigation; IBRS", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", + "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": 0, + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0, + "num_wires": 4, + "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", + "witness_compiler": "c++" + }, + { + "circuit_id": "96444cdd-027c-4c3f-a682-4e72d16bf3a5", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-15T13:28:53.099Z", + "proving_scheme": "groth16", + "status": "Ready", + "compute_time": "P0DT00H00M07.940388S", + "compute_times": { + "total": 8.01799102500081, + "queued": 32.362319, + "clean_up": 0.001860274001955986, + "create_cpp": 0.05603296309709549, + "file_setup": 0.24690320529043674, + "compile_cpp": 4.9119456727057695, + "create_r1cs": 0.009936073794960976, + "save_results": 0.005414023995399475, + "get_r1cs_info": 0.0005574170500040054, + "groth16_setup": 1.3544788006693125, + "export_verification_key": 1.4287667162716389, + "download_trusted_setup_file": 0.0015699360519647598 + }, + "file_sizes": { + "total": 225418, + "circuit": 213240, + "total_gb": 0.000225418, + "total_mb": 0.225418, + "circuit.dat": 6176, + "code.tar.gz": 497, + "circuit.zkey": 2580, + "verification_key": 2925 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", + "Model:": "85", + "CPU(s):": "96", + "BogoMIPS:": "5400.00", + "L2 cache:": "48 MiB (48 instances)", + "L3 cache:": "66 MiB (2 instances)", + "Stepping:": "4", + "L1d cache:": "1.5 MiB (48 instances)", + "L1i cache:": "1.5 MiB (48 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "46 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", + "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", + "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Core(s) per socket:": "24", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", + "On-line CPU(s) list:": "0,1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41-49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89-95", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88", + "Vulnerability Meltdown:": "Mitigation; PTI", + "Vulnerability Retbleed:": "Mitigation; IBRS", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", + "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": 0, + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0, + "num_wires": 4, + "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", + "witness_compiler": "c++" + }, + { + "circuit_id": "fb643fa2-c0d1-43c0-b005-e94ecc364e81", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-15T13:28:52.239Z", + "proving_scheme": "groth16", + "status": "Ready", + "compute_time": "P0DT00H00M07.931796S", + "compute_times": { + "total": 8.004282549023628, + "queued": 30.380939, + "clean_up": 0.003405677154660225, + "create_cpp": 0.04673151113092899, + "file_setup": 0.27263920940458775, + "compile_cpp": 4.911707244813442, + "create_r1cs": 0.017409181222319603, + "save_results": 0.007333524525165558, + "get_r1cs_info": 0.00041870400309562683, + "groth16_setup": 1.4117986112833023, + "export_verification_key": 1.330976827070117, + "download_trusted_setup_file": 0.001385936513543129 + }, + "file_sizes": { + "total": 225450, + "circuit": 213240, + "total_gb": 0.00022545, + "total_mb": 0.22545, + "circuit.dat": 6176, + "code.tar.gz": 529, + "circuit.zkey": 2580, + "verification_key": 2925 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tgz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", + "Model:": "85", + "CPU(s):": "96", + "BogoMIPS:": "5400.00", + "L2 cache:": "48 MiB (48 instances)", + "L3 cache:": "66 MiB (2 instances)", + "Stepping:": "4", + "L1d cache:": "1.5 MiB (48 instances)", + "L1i cache:": "1.5 MiB (48 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "46 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", + "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", + "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Core(s) per socket:": "24", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", + "On-line CPU(s) list:": "0,1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41-49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89-95", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88", + "Vulnerability Meltdown:": "Mitigation; PTI", + "Vulnerability Retbleed:": "Mitigation; IBRS", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", + "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": 0, + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0, + "num_wires": 4, + "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", + "witness_compiler": "c++" + }, + { + "circuit_id": "7ef187a6-8c98-453b-8a71-a9eaaecc0e34", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-15T13:28:51.703Z", + "proving_scheme": "groth16", + "status": "Ready", + "compute_time": "P0DT00H00M07.805326S", + "compute_times": { + "total": 7.880803409963846, + "queued": 29.627509, + "clean_up": 0.0018093828111886978, + "create_cpp": 0.04843143746256828, + "file_setup": 0.2650751415640116, + "compile_cpp": 4.736435519531369, + "create_r1cs": 0.01788560301065445, + "save_results": 0.0059021469205617905, + "get_r1cs_info": 0.00045815669000148773, + "groth16_setup": 1.429807098582387, + "export_verification_key": 1.3734482415020466, + "download_trusted_setup_file": 0.0011302679777145386 + }, + "file_sizes": { + "total": 225450, + "circuit": 213240, + "total_gb": 0.00022545, + "total_mb": 0.22545, + "circuit.dat": 6176, + "code.tar.gz": 529, + "circuit.zkey": 2580, + "verification_key": 2925 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tgz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", + "Model:": "85", + "CPU(s):": "96", + "BogoMIPS:": "5400.00", + "L2 cache:": "48 MiB (48 instances)", + "L3 cache:": "66 MiB (2 instances)", + "Stepping:": "4", + "L1d cache:": "1.5 MiB (48 instances)", + "L1i cache:": "1.5 MiB (48 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "46 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", + "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", + "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Core(s) per socket:": "24", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", + "On-line CPU(s) list:": "0,1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41-49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89-95", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88", + "Vulnerability Meltdown:": "Mitigation; PTI", + "Vulnerability Retbleed:": "Mitigation; IBRS", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", + "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": 0, + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0, + "num_wires": 4, + "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", + "witness_compiler": "c++" + }, + { + "circuit_id": "ef0f5d45-cc4a-44dc-bbcc-68cec83e7279", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-15T13:28:51.482Z", + "proving_scheme": "groth16", + "status": "Ready", + "compute_time": "P0DT00H00M07.567289S", + "compute_times": { + "total": 7.648521225899458, + "queued": 26.571096, + "clean_up": 0.001760430634021759, + "create_cpp": 0.05707797780632973, + "file_setup": 0.25215250812470913, + "compile_cpp": 4.578133208677173, + "create_r1cs": 0.016807612031698227, + "save_results": 0.005696004256606102, + "get_r1cs_info": 0.0005241129547357559, + "groth16_setup": 1.3513143379241228, + "export_verification_key": 1.3831868078559637, + "download_trusted_setup_file": 0.001370033249258995 + }, + "file_sizes": { + "total": 225450, + "circuit": 213240, + "total_gb": 0.00022545, + "total_mb": 0.22545, + "circuit.dat": 6176, + "code.tar.gz": 529, + "circuit.zkey": 2580, + "verification_key": 2925 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tgz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", + "Model:": "85", + "CPU(s):": "96", + "BogoMIPS:": "5400.00", + "L2 cache:": "48 MiB (48 instances)", + "L3 cache:": "66 MiB (2 instances)", + "Stepping:": "4", + "L1d cache:": "1.5 MiB (48 instances)", + "L1i cache:": "1.5 MiB (48 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "46 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", + "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", + "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Core(s) per socket:": "24", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", + "On-line CPU(s) list:": "0,1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41-49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89-95", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88", + "Vulnerability Meltdown:": "Mitigation; PTI", + "Vulnerability Retbleed:": "Mitigation; IBRS", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", + "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": 0, + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0, + "num_wires": 4, + "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", + "witness_compiler": "c++" + }, + { + "circuit_id": "aa53da22-0b0e-4a8e-859e-fccdac3b504b", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-15T13:28:51.339Z", + "proving_scheme": "groth16", + "status": "Ready", + "compute_time": "P0DT00H00M07.705618S", + "compute_times": { + "total": 7.775683760643005, + "queued": 17.802545, + "clean_up": 0.0016981493681669235, + "create_cpp": 0.04159858077764511, + "file_setup": 0.2633522041141987, + "compile_cpp": 4.702255232259631, + "create_r1cs": 0.016227660700678825, + "save_results": 0.006025375798344612, + "get_r1cs_info": 0.0004564579576253891, + "groth16_setup": 1.386870777234435, + "export_verification_key": 1.355175631120801, + "download_trusted_setup_file": 0.0015500187873840332 + }, + "file_sizes": { + "total": 225420, + "circuit": 213240, + "total_gb": 0.00022542, + "total_mb": 0.22542, + "circuit.dat": 6176, + "code.tar.gz": 499, + "circuit.zkey": 2580, + "verification_key": 2925 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", + "Model:": "85", + "CPU(s):": "96", + "BogoMIPS:": "5400.00", + "L2 cache:": "48 MiB (48 instances)", + "L3 cache:": "66 MiB (2 instances)", + "Stepping:": "4", + "L1d cache:": "1.5 MiB (48 instances)", + "L1i cache:": "1.5 MiB (48 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "46 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", + "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", + "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Core(s) per socket:": "24", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", + "On-line CPU(s) list:": "0,1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41-49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89-95", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88", + "Vulnerability Meltdown:": "Mitigation; PTI", + "Vulnerability Retbleed:": "Mitigation; IBRS", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", + "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": 0, + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0, + "num_wires": 4, + "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", + "witness_compiler": "c++" + }, + { + "circuit_id": "24294db3-7afa-418b-bf0d-1243f5886a87", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-15T13:28:50.820Z", + "proving_scheme": "groth16", + "status": "Ready", + "compute_time": "P0DT00H00M07.571579S", + "compute_times": { + "total": 7.648920483887196, + "queued": 9.579982, + "clean_up": 0.0016354341059923172, + "create_cpp": 0.04483112692832947, + "file_setup": 0.25358958914875984, + "compile_cpp": 4.433619428426027, + "create_r1cs": 0.015889232978224754, + "save_results": 0.02785000577569008, + "get_r1cs_info": 0.0006279703229665756, + "groth16_setup": 1.4690972827374935, + "export_verification_key": 1.3993326891213655, + "download_trusted_setup_file": 0.00199044868350029 + }, + "file_sizes": { + "total": 225450, + "circuit": 213240, + "total_gb": 0.00022545, + "total_mb": 0.22545, + "circuit.dat": 6176, + "code.tar.gz": 529, + "circuit.zkey": 2580, + "verification_key": 2925 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tgz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", + "Model:": "85", + "CPU(s):": "96", + "BogoMIPS:": "5400.00", + "L2 cache:": "48 MiB (48 instances)", + "L3 cache:": "66 MiB (2 instances)", + "Stepping:": "4", + "L1d cache:": "1.5 MiB (48 instances)", + "L1i cache:": "1.5 MiB (48 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "46 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", + "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", + "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Core(s) per socket:": "24", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", + "On-line CPU(s) list:": "0,1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41-49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89-95", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88", + "Vulnerability Meltdown:": "Mitigation; PTI", + "Vulnerability Retbleed:": "Mitigation; IBRS", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", + "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": 0, + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0, + "num_wires": 4, + "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", + "witness_compiler": "c++" + }, + { + "circuit_id": "d277da2b-a725-479a-a7b5-45d7faaade8c", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-15T13:28:50.187Z", + "proving_scheme": "groth16", + "status": "Ready", + "compute_time": "P0DT00H00M07.506613S", + "compute_times": { + "total": 7.5880236234515905, + "queued": 1.494971, + "clean_up": 0.001649005338549614, + "create_cpp": 0.0485001876950264, + "file_setup": 0.2546906843781471, + "compile_cpp": 4.532622603699565, + "create_r1cs": 0.017625445500016212, + "save_results": 0.006649702787399292, + "get_r1cs_info": 0.000700976699590683, + "groth16_setup": 1.304074052721262, + "export_verification_key": 1.4185661766678095, + "download_trusted_setup_file": 0.0024695247411727905 + }, + "file_sizes": { + "total": 225418, + "circuit": 213240, + "total_gb": 0.000225418, + "total_mb": 0.225418, + "circuit.dat": 6176, + "code.tar.gz": 497, + "circuit.zkey": 2580, + "verification_key": 2925 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", + "Model:": "85", + "CPU(s):": "96", + "BogoMIPS:": "5400.00", + "L2 cache:": "48 MiB (48 instances)", + "L3 cache:": "66 MiB (2 instances)", + "Stepping:": "4", + "L1d cache:": "1.5 MiB (48 instances)", + "L1i cache:": "1.5 MiB (48 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "46 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", + "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", + "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Core(s) per socket:": "24", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", + "On-line CPU(s) list:": "0,1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41-49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89-95", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88", + "Vulnerability Meltdown:": "Mitigation; PTI", + "Vulnerability Retbleed:": "Mitigation; IBRS", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", + "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": 0, + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0, + "num_wires": 4, + "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", + "witness_compiler": "c++" + }, + { + "circuit_id": "7e87dad2-322f-4d95-8e15-98ae32d5b826", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-15T12:57:14.415Z", + "proving_scheme": "groth16", + "status": "Ready", + "compute_time": "P0DT00H00M09.377530S", + "compute_times": { + "total": 9.451860029250383, + "queued": 40.689702, + "clean_up": 0.0017610322684049606, + "create_cpp": 0.039578983560204506, + "file_setup": 0.24412750452756882, + "compile_cpp": 6.24841209128499, + "create_r1cs": 0.009235382080078125, + "save_results": 0.006292244419455528, + "get_r1cs_info": 0.000551098957657814, + "groth16_setup": 1.5359418783336878, + "export_verification_key": 1.3637649361044168, + "download_trusted_setup_file": 0.0016706939786672592 + }, + "file_sizes": { + "total": 225418, + "circuit": 213240, + "total_gb": 0.000225418, + "total_mb": 0.225418, + "circuit.dat": 6176, + "code.tar.gz": 497, + "circuit.zkey": 2580, + "verification_key": 2925 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", + "Model:": "85", + "CPU(s):": "96", + "BogoMIPS:": "5400.00", + "L2 cache:": "48 MiB (48 instances)", + "L3 cache:": "66 MiB (2 instances)", + "Stepping:": "4", + "L1d cache:": "1.5 MiB (48 instances)", + "L1i cache:": "1.5 MiB (48 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "46 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", + "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", + "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Core(s) per socket:": "24", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", + "On-line CPU(s) list:": "0,1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41-49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89-95", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88", + "Vulnerability Meltdown:": "Mitigation; PTI", + "Vulnerability Retbleed:": "Mitigation; IBRS", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", + "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": 0, + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0, + "num_wires": 4, + "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", + "witness_compiler": "c++" + }, + { + "circuit_id": "4a19fd18-26a5-4539-8450-fdc3c57ed2e6", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-15T12:57:13.901Z", + "proving_scheme": "groth16", + "status": "Ready", + "compute_time": "P0DT00H00M08.557773S", + "compute_times": { + "total": 8.646001007407904, + "queued": 40.098382, + "clean_up": 0.0008681099861860275, + "create_cpp": 0.04919867962598801, + "file_setup": 0.2636448033154011, + "compile_cpp": 5.393070332705975, + "create_r1cs": 0.01822390779852867, + "save_results": 0.004401525482535362, + "get_r1cs_info": 0.0008187666535377502, + "groth16_setup": 1.5381991360336542, + "export_verification_key": 1.3743581157177687, + "download_trusted_setup_file": 0.0025259219110012054 + }, + "file_sizes": { + "total": 225418, + "circuit": 213240, + "total_gb": 0.000225418, + "total_mb": 0.225418, + "circuit.dat": 6176, + "code.tar.gz": 497, + "circuit.zkey": 2580, + "verification_key": 2925 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", + "Model:": "85", + "CPU(s):": "96", + "BogoMIPS:": "5400.00", + "L2 cache:": "48 MiB (48 instances)", + "L3 cache:": "66 MiB (2 instances)", + "Stepping:": "4", + "L1d cache:": "1.5 MiB (48 instances)", + "L1i cache:": "1.5 MiB (48 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "46 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", + "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", + "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Core(s) per socket:": "24", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", + "On-line CPU(s) list:": "0,1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41-49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89-95", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88", + "Vulnerability Meltdown:": "Mitigation; PTI", + "Vulnerability Retbleed:": "Mitigation; IBRS", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", + "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": 0, + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0, + "num_wires": 4, + "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", + "witness_compiler": "c++" + }, + { + "circuit_id": "dc8d2ea3-558f-464b-88ef-4bfa06fa618e", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-15T12:57:13.697Z", + "proving_scheme": "groth16", + "status": "Ready", + "compute_time": "P0DT00H00M08.013795S", + "compute_times": { + "total": 8.088545773178339, + "queued": 40.279611, + "clean_up": 0.0012215152382850647, + "create_cpp": 0.05022146739065647, + "file_setup": 0.26072706654667854, + "compile_cpp": 5.073584912344813, + "create_r1cs": 0.01825350522994995, + "save_results": 0.004272386431694031, + "get_r1cs_info": 0.0007919874042272568, + "groth16_setup": 1.3669961635023355, + "export_verification_key": 1.3096041847020388, + "download_trusted_setup_file": 0.0024598315358161926 + }, + "file_sizes": { + "total": 225418, + "circuit": 213240, + "total_gb": 0.000225418, + "total_mb": 0.225418, + "circuit.dat": 6176, + "code.tar.gz": 497, + "circuit.zkey": 2580, + "verification_key": 2925 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", + "Model:": "85", + "CPU(s):": "96", + "BogoMIPS:": "5400.00", + "L2 cache:": "48 MiB (48 instances)", + "L3 cache:": "66 MiB (2 instances)", + "Stepping:": "4", + "L1d cache:": "1.5 MiB (48 instances)", + "L1i cache:": "1.5 MiB (48 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "46 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", + "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", + "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Core(s) per socket:": "24", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", + "On-line CPU(s) list:": "0,1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41-49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89-95", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88", + "Vulnerability Meltdown:": "Mitigation; PTI", + "Vulnerability Retbleed:": "Mitigation; IBRS", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", + "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": 0, + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0, + "num_wires": 4, + "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", + "witness_compiler": "c++" + }, + { + "circuit_id": "b0811776-3cbb-4f04-91fa-77ff7816010c", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-15T12:57:13.508Z", + "proving_scheme": "groth16", + "status": "Ready", + "compute_time": "P0DT00H00M08.156157S", + "compute_times": { + "total": 8.234552638605237, + "queued": 37.671742, + "clean_up": 0.001722807064652443, + "create_cpp": 0.04674012400209904, + "file_setup": 0.24939687177538872, + "compile_cpp": 5.042005067691207, + "create_r1cs": 0.018849780783057213, + "save_results": 0.0057501643896102905, + "get_r1cs_info": 0.0007910709828138351, + "groth16_setup": 1.4699617084115744, + "export_verification_key": 1.396314723417163, + "download_trusted_setup_file": 0.002504836767911911 + }, + "file_sizes": { + "total": 225418, + "circuit": 213240, + "total_gb": 0.000225418, + "total_mb": 0.225418, + "circuit.dat": 6176, + "code.tar.gz": 497, + "circuit.zkey": 2580, + "verification_key": 2925 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", + "Model:": "85", + "CPU(s):": "96", + "BogoMIPS:": "5400.00", + "L2 cache:": "48 MiB (48 instances)", + "L3 cache:": "66 MiB (2 instances)", + "Stepping:": "4", + "L1d cache:": "1.5 MiB (48 instances)", + "L1i cache:": "1.5 MiB (48 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "46 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", + "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", + "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Core(s) per socket:": "24", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", + "On-line CPU(s) list:": "0,1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41-49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89-95", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88", + "Vulnerability Meltdown:": "Mitigation; PTI", + "Vulnerability Retbleed:": "Mitigation; IBRS", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", + "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": 0, + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0, + "num_wires": 4, + "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", + "witness_compiler": "c++" + }, + { + "circuit_id": "f6935d07-74b9-4eaa-917a-dd40eb8c3eb5", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-15T12:57:13.072Z", + "proving_scheme": "groth16", + "status": "Ready", + "compute_time": "P0DT00H00M08.484689S", + "compute_times": { + "total": 8.550514187663794, + "queued": 35.796557, + "clean_up": 0.001462932676076889, + "create_cpp": 0.04712385684251785, + "file_setup": 0.22329718619585037, + "compile_cpp": 5.446879722177982, + "create_r1cs": 0.01579388603568077, + "save_results": 0.012278709560632706, + "get_r1cs_info": 0.0005889721214771271, + "groth16_setup": 1.4639050755649805, + "export_verification_key": 1.3370745498687029, + "download_trusted_setup_file": 0.001513822004199028 + }, + "file_sizes": { + "total": 225450, + "circuit": 213240, + "total_gb": 0.00022545, + "total_mb": 0.22545, + "circuit.dat": 6176, + "code.tar.gz": 529, + "circuit.zkey": 2580, + "verification_key": 2925 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tgz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", + "Model:": "85", + "CPU(s):": "96", + "BogoMIPS:": "5400.00", + "L2 cache:": "48 MiB (48 instances)", + "L3 cache:": "66 MiB (2 instances)", + "Stepping:": "4", + "L1d cache:": "1.5 MiB (48 instances)", + "L1i cache:": "1.5 MiB (48 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "46 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", + "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", + "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Core(s) per socket:": "24", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", + "On-line CPU(s) list:": "0,1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41-49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89-95", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88", + "Vulnerability Meltdown:": "Mitigation; PTI", + "Vulnerability Retbleed:": "Mitigation; IBRS", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", + "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": 0, + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0, + "num_wires": 4, + "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", + "witness_compiler": "c++" + }, + { + "circuit_id": "f8e982ba-0f45-445f-8080-31e81ea66636", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-15T12:57:12.326Z", + "proving_scheme": "groth16", + "status": "Ready", + "compute_time": "P0DT00H00M07.840774S", + "compute_times": { + "total": 7.925517087802291, + "queued": 33.768323, + "clean_up": 0.0019125081598758698, + "create_cpp": 0.0470704510807991, + "file_setup": 0.25080676563084126, + "compile_cpp": 4.833130354061723, + "create_r1cs": 0.017199259251356125, + "save_results": 0.0060319844633340836, + "get_r1cs_info": 0.0008542612195014954, + "groth16_setup": 1.3945932500064373, + "export_verification_key": 1.3710776213556528, + "download_trusted_setup_file": 0.002456527203321457 + }, + "file_sizes": { + "total": 225450, + "circuit": 213240, + "total_gb": 0.00022545, + "total_mb": 0.22545, + "circuit.dat": 6176, + "code.tar.gz": 529, + "circuit.zkey": 2580, + "verification_key": 2925 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tgz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", + "Model:": "85", + "CPU(s):": "96", + "BogoMIPS:": "5400.00", + "L2 cache:": "48 MiB (48 instances)", + "L3 cache:": "66 MiB (2 instances)", + "Stepping:": "4", + "L1d cache:": "1.5 MiB (48 instances)", + "L1i cache:": "1.5 MiB (48 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "46 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", + "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", + "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Core(s) per socket:": "24", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", + "On-line CPU(s) list:": "0,1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41-49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89-95", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88", + "Vulnerability Meltdown:": "Mitigation; PTI", + "Vulnerability Retbleed:": "Mitigation; IBRS", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", + "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": 0, + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0, + "num_wires": 4, + "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", + "witness_compiler": "c++" + }, + { + "circuit_id": "946b487f-afc3-4bce-aaae-aa306a76c11e", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-15T12:57:12.265Z", + "proving_scheme": "groth16", + "status": "Ready", + "compute_time": "P0DT00H00M07.802354S", + "compute_times": { + "total": 7.876622410491109, + "queued": 32.510341, + "clean_up": 0.0016722455620765686, + "create_cpp": 0.047051187604665756, + "file_setup": 0.24521219171583652, + "compile_cpp": 4.761473456397653, + "create_r1cs": 0.01887539029121399, + "save_results": 0.005280636250972748, + "get_r1cs_info": 0.0006754584610462189, + "groth16_setup": 1.3808959163725376, + "export_verification_key": 1.4123545419424772, + "download_trusted_setup_file": 0.0024936143308877945 + }, + "file_sizes": { + "total": 225450, + "circuit": 213240, + "total_gb": 0.00022545, + "total_mb": 0.22545, + "circuit.dat": 6176, + "code.tar.gz": 529, + "circuit.zkey": 2580, + "verification_key": 2925 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tgz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", + "Model:": "85", + "CPU(s):": "96", + "BogoMIPS:": "5400.00", + "L2 cache:": "48 MiB (48 instances)", + "L3 cache:": "66 MiB (2 instances)", + "Stepping:": "4", + "L1d cache:": "1.5 MiB (48 instances)", + "L1i cache:": "1.5 MiB (48 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "46 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", + "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", + "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Core(s) per socket:": "24", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", + "On-line CPU(s) list:": "0,1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41-49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89-95", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88", + "Vulnerability Meltdown:": "Mitigation; PTI", + "Vulnerability Retbleed:": "Mitigation; IBRS", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", + "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": 0, + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0, + "num_wires": 4, + "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", + "witness_compiler": "c++" + }, + { + "circuit_id": "39a7d49d-2aa4-42f5-bad7-41fa853c5400", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-15T12:57:12.235Z", + "proving_scheme": "groth16", + "status": "Ready", + "compute_time": "P0DT00H00M07.715939S", + "compute_times": { + "total": 7.792726593092084, + "queued": 27.774632, + "clean_up": 0.0008173845708370209, + "create_cpp": 0.04740807227790356, + "file_setup": 0.24712751060724258, + "compile_cpp": 4.673818884417415, + "create_r1cs": 0.01585347205400467, + "save_results": 0.005448015406727791, + "get_r1cs_info": 0.0006210263818502426, + "groth16_setup": 1.4341732878237963, + "export_verification_key": 1.3649929203093052, + "download_trusted_setup_file": 0.001871241256594658 + }, + "file_sizes": { + "total": 225450, + "circuit": 213240, + "total_gb": 0.00022545, + "total_mb": 0.22545, + "circuit.dat": 6176, + "code.tar.gz": 529, + "circuit.zkey": 2580, + "verification_key": 2925 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tgz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", + "Model:": "85", + "CPU(s):": "96", + "BogoMIPS:": "5400.00", + "L2 cache:": "48 MiB (48 instances)", + "L3 cache:": "66 MiB (2 instances)", + "Stepping:": "4", + "L1d cache:": "1.5 MiB (48 instances)", + "L1i cache:": "1.5 MiB (48 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "46 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", + "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", + "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Core(s) per socket:": "24", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", + "On-line CPU(s) list:": "0,1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41-49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89-95", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88", + "Vulnerability Meltdown:": "Mitigation; PTI", + "Vulnerability Retbleed:": "Mitigation; IBRS", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", + "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": 0, + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0, + "num_wires": 4, + "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", + "witness_compiler": "c++" + }, + { + "circuit_id": "a8fe6c7b-48d4-4d31-9357-d7d9a184b933", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-15T12:57:11.316Z", + "proving_scheme": "groth16", + "status": "Ready", + "compute_time": "P0DT00H00M08.241682S", + "compute_times": { + "total": 8.319445628672838, + "queued": 25.35184, + "clean_up": 0.0016656406223773956, + "create_cpp": 0.047069305554032326, + "file_setup": 0.24678357504308224, + "compile_cpp": 5.164380734786391, + "create_r1cs": 0.017509033903479576, + "save_results": 0.0056435465812683105, + "get_r1cs_info": 0.000514056533575058, + "groth16_setup": 1.471221825107932, + "export_verification_key": 1.3627644162625074, + "download_trusted_setup_file": 0.001434769481420517 + }, + "file_sizes": { + "total": 225420, + "circuit": 213240, + "total_gb": 0.00022542, + "total_mb": 0.22542, + "circuit.dat": 6176, + "code.tar.gz": 499, + "circuit.zkey": 2580, + "verification_key": 2925 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", + "Model:": "85", + "CPU(s):": "96", + "BogoMIPS:": "5400.00", + "L2 cache:": "48 MiB (48 instances)", + "L3 cache:": "66 MiB (2 instances)", + "Stepping:": "4", + "L1d cache:": "1.5 MiB (48 instances)", + "L1i cache:": "1.5 MiB (48 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "46 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", + "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", + "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Core(s) per socket:": "24", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", + "On-line CPU(s) list:": "0,1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41-49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89-95", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88", + "Vulnerability Meltdown:": "Mitigation; PTI", + "Vulnerability Retbleed:": "Mitigation; IBRS", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", + "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": 0, + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0, + "num_wires": 4, + "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", + "witness_compiler": "c++" + }, + { + "circuit_id": "8dd11963-c9e5-4610-b47e-06e1a6721b7b", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-15T12:57:11.310Z", + "proving_scheme": "groth16", + "status": "Ready", + "compute_time": "P0DT00H00M07.516111S", + "compute_times": { + "total": 7.592797514051199, + "queued": 16.636252, + "clean_up": 0.00167083740234375, + "create_cpp": 0.05534513108432293, + "file_setup": 0.24897748976945877, + "compile_cpp": 4.495417779311538, + "create_r1cs": 0.01559985987842083, + "save_results": 0.005447791889309883, + "get_r1cs_info": 0.0003331173211336136, + "groth16_setup": 1.3702464755624533, + "export_verification_key": 1.3981607723981142, + "download_trusted_setup_file": 0.0010023191571235657 + }, + "file_sizes": { + "total": 225418, + "circuit": 213240, + "total_gb": 0.000225418, + "total_mb": 0.225418, + "circuit.dat": 6176, + "code.tar.gz": 497, + "circuit.zkey": 2580, + "verification_key": 2925 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", + "Model:": "85", + "CPU(s):": "96", + "BogoMIPS:": "5400.00", + "L2 cache:": "48 MiB (48 instances)", + "L3 cache:": "66 MiB (2 instances)", + "Stepping:": "4", + "L1d cache:": "1.5 MiB (48 instances)", + "L1i cache:": "1.5 MiB (48 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "46 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", + "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", + "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Core(s) per socket:": "24", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", + "On-line CPU(s) list:": "0,1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41-49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89-95", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88", + "Vulnerability Meltdown:": "Mitigation; PTI", + "Vulnerability Retbleed:": "Mitigation; IBRS", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", + "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": 0, + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0, + "num_wires": 4, + "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", + "witness_compiler": "c++" + }, + { + "circuit_id": "17fa8218-c2f7-4e58-9490-ab5f57ec84cf", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-15T02:08:13.061Z", + "proving_scheme": "groth16", + "status": "Ready", + "compute_time": "P0DT00H00M07.636293S", + "compute_times": { + "total": 7.71372976899147, + "queued": 15.303177, + "clean_up": 0.0018192771822214127, + "create_cpp": 0.04809073731303215, + "file_setup": 0.2711461931467056, + "compile_cpp": 4.684678319841623, + "create_r1cs": 0.010924961417913437, + "save_results": 0.005295315757393837, + "get_r1cs_info": 0.0006762687116861343, + "groth16_setup": 1.3283091206103563, + "export_verification_key": 1.359778843820095, + "download_trusted_setup_file": 0.00243326835334301 + }, + "file_sizes": { + "total": 225418, + "circuit": 213240, + "total_gb": 0.000225418, + "total_mb": 0.225418, + "circuit.dat": 6176, + "code.tar.gz": 497, + "circuit.zkey": 2580, + "verification_key": 2925 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", + "Model:": "85", + "CPU(s):": "96", + "BogoMIPS:": "5400.00", + "L2 cache:": "48 MiB (48 instances)", + "L3 cache:": "66 MiB (2 instances)", + "Stepping:": "4", + "L1d cache:": "1.5 MiB (48 instances)", + "L1i cache:": "1.5 MiB (48 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "46 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", + "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", + "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Core(s) per socket:": "24", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", + "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", + "Vulnerability Meltdown:": "Mitigation; PTI", + "Vulnerability Retbleed:": "Mitigation; IBRS", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", + "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": 0, + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0, + "num_wires": 4, + "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", + "witness_compiler": "c++" + }, + { + "circuit_id": "4803fbe7-94df-4450-862e-222f380aa951", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-15T02:08:12.338Z", + "proving_scheme": "groth16", + "status": "Ready", + "compute_time": "P0DT00H00M04.673188S", + "compute_times": { + "total": 4.704905105987564, + "queued": 15.967736, + "clean_up": 0.0005092429928481579, + "create_cpp": 0.030301433987915516, + "file_setup": 0.17748972598928958, + "compile_cpp": 2.933968245051801, + "create_r1cs": 0.005270819994620979, + "save_results": 0.0024895829847082496, + "get_r1cs_info": 0.0002773590385913849, + "groth16_setup": 0.7643708229297772, + "export_verification_key": 0.7893407850060612, + "download_trusted_setup_file": 0.0007287419866770506 + }, + "file_sizes": { + "total": 225418, + "circuit": 213240, + "total_gb": 0.000225418, + "total_mb": 0.225418, + "circuit.dat": 6176, + "code.tar.gz": 497, + "circuit.zkey": 2580, + "verification_key": 2925 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf tsc_known_freq pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cat_l2 cdp_l3 invpcid_single intel_ppin cdp_l2 ssbd mba ibrs ibpb stibp ibrs_enhanced tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 avx2 smep bmi2 erms invpcid cqm rdt_a avx512f avx512dq rdseed adx smap avx512ifma clflushopt clwb intel_pt avx512cd sha_ni avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local split_lock_detect avx_vnni avx512_bf16 wbnoinvd dtherm ida arat pln pts hwp hwp_act_window hwp_epp hwp_pkg_req hfi avx512vbmi umip pku ospke waitpkg avx512_vbmi2 gfni vaes vpclmulqdq avx512_vnni avx512_bitalg tme avx512_vpopcntdq la57 rdpid bus_lock_detect cldemote movdiri movdir64b enqcmd fsrm md_clear serialize tsxldtrk pconfig arch_lbr ibt amx_bf16 avx512_fp16 amx_tile amx_int8 flush_l1d arch_capabilities", + "Model:": "143", + "CPU(s):": "128", + "BogoMIPS:": "5600.00", + "L2 cache:": "128 MiB (64 instances)", + "L3 cache:": "120 MiB (2 instances)", + "Stepping:": "7", + "L1d cache:": "3 MiB (64 instances)", + "L1i cache:": "2 MiB (64 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8462Y+", + "CPU max MHz:": "4100.0000", + "CPU min MHz:": "800.0000", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "52 bits physical, 57 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0-31,64-95", + "NUMA node1 CPU(s):": "32-63,96-127", + "Vulnerability Mds:": "Not affected", + "Core(s) per socket:": "32", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Not affected", + "On-line CPU(s) list:": "0,5-64,69-127", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "1-4,65-68", + "Vulnerability Meltdown:": "Not affected", + "Vulnerability Retbleed:": "Not affected", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; Enhanced IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS SW sequence", + "Vulnerability Itlb multihit:": "Not affected", + "Vulnerability Mmio stale data:": "Not affected", + "Vulnerability Tsx async abort:": "Not affected", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": 0, + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0, + "num_wires": 4, + "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", + "witness_compiler": "c++" + }, + { + "circuit_id": "12ae269c-cfa3-4132-ba3e-c623ce2e22c8", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-15T02:08:12.206Z", + "proving_scheme": "groth16", + "status": "Ready", + "compute_time": "P0DT00H00M07.807982S", + "compute_times": { + "total": 7.882879471406341, + "queued": 8.13048, + "clean_up": 0.0016283374279737473, + "create_cpp": 0.0489681139588356, + "file_setup": 0.2604731395840645, + "compile_cpp": 4.725069401785731, + "create_r1cs": 0.01646772027015686, + "save_results": 0.005680175498127937, + "get_r1cs_info": 0.0007954202592372894, + "groth16_setup": 1.4267123583704233, + "export_verification_key": 1.3941872529685497, + "download_trusted_setup_file": 0.0024522673338651657 + }, + "file_sizes": { + "total": 225418, + "circuit": 213240, + "total_gb": 0.000225418, + "total_mb": 0.225418, + "circuit.dat": 6176, + "code.tar.gz": 497, + "circuit.zkey": 2580, + "verification_key": 2925 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", + "Model:": "85", + "CPU(s):": "96", + "BogoMIPS:": "5400.00", + "L2 cache:": "48 MiB (48 instances)", + "L3 cache:": "66 MiB (2 instances)", + "Stepping:": "4", + "L1d cache:": "1.5 MiB (48 instances)", + "L1i cache:": "1.5 MiB (48 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "46 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", + "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", + "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Core(s) per socket:": "24", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", + "On-line CPU(s) list:": "0,1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41-49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89-95", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88", + "Vulnerability Meltdown:": "Mitigation; PTI", + "Vulnerability Retbleed:": "Mitigation; IBRS", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", + "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": 0, + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0, + "num_wires": 4, + "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", + "witness_compiler": "c++" + }, + { + "circuit_id": "384650aa-8967-4250-af2a-7314d45d6a9e", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-15T02:08:12.153Z", + "proving_scheme": "groth16", + "status": "Ready", + "compute_time": "P0DT00H00M07.684574S", + "compute_times": { + "total": 7.763364655897021, + "queued": 8.156539, + "clean_up": 0.0008707121014595032, + "create_cpp": 0.04779571294784546, + "file_setup": 0.26266710832715034, + "compile_cpp": 4.542561935260892, + "create_r1cs": 0.049717847257852554, + "save_results": 0.0047896187752485275, + "get_r1cs_info": 0.0007063969969749451, + "groth16_setup": 1.432243825867772, + "export_verification_key": 1.4190982822328806, + "download_trusted_setup_file": 0.0024577490985393524 + }, + "file_sizes": { + "total": 225418, + "circuit": 213240, + "total_gb": 0.000225418, + "total_mb": 0.225418, + "circuit.dat": 6176, + "code.tar.gz": 497, + "circuit.zkey": 2580, + "verification_key": 2925 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", + "Model:": "85", + "CPU(s):": "96", + "BogoMIPS:": "5400.00", + "L2 cache:": "48 MiB (48 instances)", + "L3 cache:": "66 MiB (2 instances)", + "Stepping:": "4", + "L1d cache:": "1.5 MiB (48 instances)", + "L1i cache:": "1.5 MiB (48 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "46 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", + "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", + "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Core(s) per socket:": "24", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", + "On-line CPU(s) list:": "0,1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41-49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89-95", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88", + "Vulnerability Meltdown:": "Mitigation; PTI", + "Vulnerability Retbleed:": "Mitigation; IBRS", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", + "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": 0, + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0, + "num_wires": 4, + "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", + "witness_compiler": "c++" + }, + { + "circuit_id": "fda87f7f-c3ec-4f10-948e-d033331c76c9", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-15T02:08:11.234Z", + "proving_scheme": "groth16", + "status": "Ready", + "compute_time": "P0DT00H00M04.668960S", + "compute_times": { + "total": 4.70031307998579, + "queued": 7.067504, + "clean_up": 0.0005026600556448102, + "create_cpp": 0.030464475974440575, + "file_setup": 0.18320538906846195, + "compile_cpp": 2.9281170460162684, + "create_r1cs": 0.00510658894199878, + "save_results": 0.002476120018400252, + "get_r1cs_info": 0.00033819000236690044, + "groth16_setup": 0.7497855660039932, + "export_verification_key": 0.7994677489623427, + "download_trusted_setup_file": 0.0006945140194147825 + }, + "file_sizes": { + "total": 225450, + "circuit": 213240, + "total_gb": 0.00022545, + "total_mb": 0.22545, + "circuit.dat": 6176, + "code.tar.gz": 529, + "circuit.zkey": 2580, + "verification_key": 2925 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tgz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf tsc_known_freq pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cat_l2 cdp_l3 invpcid_single intel_ppin cdp_l2 ssbd mba ibrs ibpb stibp ibrs_enhanced tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 avx2 smep bmi2 erms invpcid cqm rdt_a avx512f avx512dq rdseed adx smap avx512ifma clflushopt clwb intel_pt avx512cd sha_ni avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local split_lock_detect avx_vnni avx512_bf16 wbnoinvd dtherm ida arat pln pts hwp hwp_act_window hwp_epp hwp_pkg_req hfi avx512vbmi umip pku ospke waitpkg avx512_vbmi2 gfni vaes vpclmulqdq avx512_vnni avx512_bitalg tme avx512_vpopcntdq la57 rdpid bus_lock_detect cldemote movdiri movdir64b enqcmd fsrm md_clear serialize tsxldtrk pconfig arch_lbr ibt amx_bf16 avx512_fp16 amx_tile amx_int8 flush_l1d arch_capabilities", + "Model:": "143", + "CPU(s):": "128", + "BogoMIPS:": "5600.00", + "L2 cache:": "128 MiB (64 instances)", + "L3 cache:": "120 MiB (2 instances)", + "Stepping:": "7", + "L1d cache:": "3 MiB (64 instances)", + "L1i cache:": "2 MiB (64 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8462Y+", + "CPU max MHz:": "4100.0000", + "CPU min MHz:": "800.0000", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "52 bits physical, 57 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0-31,64-95", + "NUMA node1 CPU(s):": "32-63,96-127", + "Vulnerability Mds:": "Not affected", + "Core(s) per socket:": "32", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Not affected", + "On-line CPU(s) list:": "0,5-64,69-127", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "1-4,65-68", + "Vulnerability Meltdown:": "Not affected", + "Vulnerability Retbleed:": "Not affected", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; Enhanced IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS SW sequence", + "Vulnerability Itlb multihit:": "Not affected", + "Vulnerability Mmio stale data:": "Not affected", + "Vulnerability Tsx async abort:": "Not affected", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": 0, + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0, + "num_wires": 4, + "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", + "witness_compiler": "c++" + }, + { + "circuit_id": "1d85f8c0-a58c-491e-9d17-4ce07902f6be", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-15T02:08:11.224Z", + "proving_scheme": "groth16", + "status": "Ready", + "compute_time": "P0DT00H00M07.392307S", + "compute_times": { + "total": 7.469517232850194, + "queued": 8.534181, + "clean_up": 0.001875605434179306, + "create_cpp": 0.053479813039302826, + "file_setup": 0.22859745100140572, + "compile_cpp": 4.603027116507292, + "create_r1cs": 0.010996641591191292, + "save_results": 0.005396205931901932, + "get_r1cs_info": 0.0006968453526496887, + "groth16_setup": 1.3165561687201262, + "export_verification_key": 1.2459994573146105, + "download_trusted_setup_file": 0.002440648153424263 + }, + "file_sizes": { + "total": 225420, + "circuit": 213240, + "total_gb": 0.00022542, + "total_mb": 0.22542, + "circuit.dat": 6176, + "code.tar.gz": 499, + "circuit.zkey": 2580, + "verification_key": 2925 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", + "Model:": "85", + "CPU(s):": "96", + "BogoMIPS:": "5400.00", + "L2 cache:": "48 MiB (48 instances)", + "L3 cache:": "66 MiB (2 instances)", + "Stepping:": "4", + "L1d cache:": "1.5 MiB (48 instances)", + "L1i cache:": "1.5 MiB (48 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "46 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", + "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", + "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Core(s) per socket:": "24", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", + "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", + "Vulnerability Meltdown:": "Mitigation; PTI", + "Vulnerability Retbleed:": "Mitigation; IBRS", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", + "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": 0, + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0, + "num_wires": 4, + "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", + "witness_compiler": "c++" + }, + { + "circuit_id": "8ce7821a-ac27-47d4-b226-4fc1757f0a30", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-15T02:08:10.585Z", + "proving_scheme": "groth16", + "status": "Ready", + "compute_time": "P0DT00H00M04.604279S", + "compute_times": { + "total": 4.635603144066408, + "queued": 0.97709, + "clean_up": 0.00047702505253255367, + "create_cpp": 0.030288457055576146, + "file_setup": 0.19134966598358005, + "compile_cpp": 2.92873600195162, + "create_r1cs": 0.005112337996251881, + "save_results": 0.003062595962546766, + "get_r1cs_info": 0.0002235310385003686, + "groth16_setup": 0.70648637204431, + "export_verification_key": 0.7690231120213866, + "download_trusted_setup_file": 0.000696779927238822 + }, + "file_sizes": { + "total": 225450, + "circuit": 213240, + "total_gb": 0.00022545, + "total_mb": 0.22545, + "circuit.dat": 6176, + "code.tar.gz": 529, + "circuit.zkey": 2580, + "verification_key": 2925 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tgz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf tsc_known_freq pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cat_l2 cdp_l3 invpcid_single intel_ppin cdp_l2 ssbd mba ibrs ibpb stibp ibrs_enhanced tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 avx2 smep bmi2 erms invpcid cqm rdt_a avx512f avx512dq rdseed adx smap avx512ifma clflushopt clwb intel_pt avx512cd sha_ni avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local split_lock_detect avx_vnni avx512_bf16 wbnoinvd dtherm ida arat pln pts hwp hwp_act_window hwp_epp hwp_pkg_req hfi avx512vbmi umip pku ospke waitpkg avx512_vbmi2 gfni vaes vpclmulqdq avx512_vnni avx512_bitalg tme avx512_vpopcntdq la57 rdpid bus_lock_detect cldemote movdiri movdir64b enqcmd fsrm md_clear serialize tsxldtrk pconfig arch_lbr ibt amx_bf16 avx512_fp16 amx_tile amx_int8 flush_l1d arch_capabilities", + "Model:": "143", + "CPU(s):": "128", + "BogoMIPS:": "5600.00", + "L2 cache:": "128 MiB (64 instances)", + "L3 cache:": "120 MiB (2 instances)", + "Stepping:": "7", + "L1d cache:": "3 MiB (64 instances)", + "L1i cache:": "2 MiB (64 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8462Y+", + "CPU max MHz:": "4100.0000", + "CPU min MHz:": "800.0000", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "52 bits physical, 57 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0-31,64-95", + "NUMA node1 CPU(s):": "32-63,96-127", + "Vulnerability Mds:": "Not affected", + "Core(s) per socket:": "32", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Not affected", + "On-line CPU(s) list:": "0,5-64,69-127", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "1-4,65-68", + "Vulnerability Meltdown:": "Not affected", + "Vulnerability Retbleed:": "Not affected", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; Enhanced IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS SW sequence", + "Vulnerability Itlb multihit:": "Not affected", + "Vulnerability Mmio stale data:": "Not affected", + "Vulnerability Tsx async abort:": "Not affected", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": 0, + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0, + "num_wires": 4, + "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", + "witness_compiler": "c++" + }, + { + "circuit_id": "57a370e8-d904-4e45-ad58-196db3d30f4d", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-15T02:08:10.148Z", + "proving_scheme": "groth16", + "status": "Ready", + "compute_time": "P0DT00H00M07.670361S", + "compute_times": { + "total": 7.7598298992961645, + "queued": 1.340101, + "clean_up": 0.0019132401794195175, + "create_cpp": 0.047642480581998825, + "file_setup": 0.28451264277100563, + "compile_cpp": 4.557841159403324, + "create_r1cs": 0.01719365455210209, + "save_results": 0.00552779994904995, + "get_r1cs_info": 0.0007379818707704544, + "groth16_setup": 1.4282774832099676, + "export_verification_key": 1.4133095126599073, + "download_trusted_setup_file": 0.002416664734482765 + }, + "file_sizes": { + "total": 225450, + "circuit": 213240, + "total_gb": 0.00022545, + "total_mb": 0.22545, + "circuit.dat": 6176, + "code.tar.gz": 529, + "circuit.zkey": 2580, + "verification_key": 2925 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tgz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", + "Model:": "85", + "CPU(s):": "96", + "BogoMIPS:": "5400.00", + "L2 cache:": "48 MiB (48 instances)", + "L3 cache:": "66 MiB (2 instances)", + "Stepping:": "4", + "L1d cache:": "1.5 MiB (48 instances)", + "L1i cache:": "1.5 MiB (48 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "46 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", + "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", + "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Core(s) per socket:": "24", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", + "On-line CPU(s) list:": "0,1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41-49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89-95", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88", + "Vulnerability Meltdown:": "Mitigation; PTI", + "Vulnerability Retbleed:": "Mitigation; IBRS", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", + "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": 0, + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0, + "num_wires": 4, + "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", + "witness_compiler": "c++" + }, + { + "circuit_id": "44c0f928-5c25-4bc0-a78f-1523c457f5af", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-15T02:08:10.140Z", + "proving_scheme": "groth16", + "status": "Ready", + "compute_time": "P0DT00H00M07.658778S", + "compute_times": { + "total": 7.742852771654725, + "queued": 1.336022, + "clean_up": 0.0016133859753608704, + "create_cpp": 0.05547862686216831, + "file_setup": 0.29617039300501347, + "compile_cpp": 4.542897034436464, + "create_r1cs": 0.017181839793920517, + "save_results": 0.0058561451733112335, + "get_r1cs_info": 0.0004195272922515869, + "groth16_setup": 1.408520732074976, + "export_verification_key": 1.4131443835794926, + "download_trusted_setup_file": 0.0012377090752124786 + }, + "file_sizes": { + "total": 225450, + "circuit": 213240, + "total_gb": 0.00022545, + "total_mb": 0.22545, + "circuit.dat": 6176, + "code.tar.gz": 529, + "circuit.zkey": 2580, + "verification_key": 2925 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tgz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", + "Model:": "85", + "CPU(s):": "96", + "BogoMIPS:": "5400.00", + "L2 cache:": "48 MiB (48 instances)", + "L3 cache:": "66 MiB (2 instances)", + "Stepping:": "4", + "L1d cache:": "1.5 MiB (48 instances)", + "L1i cache:": "1.5 MiB (48 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "46 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", + "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", + "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Core(s) per socket:": "24", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", + "On-line CPU(s) list:": "0,1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41-49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89-95", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88", + "Vulnerability Meltdown:": "Mitigation; PTI", + "Vulnerability Retbleed:": "Mitigation; IBRS", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", + "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": 0, + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0, + "num_wires": 4, + "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", + "witness_compiler": "c++" + }, + { + "circuit_id": "123f913d-504d-4246-8d29-85a68b8f685c", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-15T02:08:09.711Z", + "proving_scheme": "groth16", + "status": "Ready", + "compute_time": "P0DT00H00M07.738898S", + "compute_times": { + "total": 7.813894247636199, + "queued": 1.100992, + "clean_up": 0.0010037794709205627, + "create_cpp": 0.04616817645728588, + "file_setup": 0.24978489242494106, + "compile_cpp": 4.788679093122482, + "create_r1cs": 0.016563747078180313, + "save_results": 0.004571622237563133, + "get_r1cs_info": 0.0006682649254798889, + "groth16_setup": 1.4005869701504707, + "export_verification_key": 1.3029269501566887, + "download_trusted_setup_file": 0.0024551209062337875 + }, + "file_sizes": { + "total": 225418, + "circuit": 213240, + "total_gb": 0.000225418, + "total_mb": 0.225418, + "circuit.dat": 6176, + "code.tar.gz": 497, + "circuit.zkey": 2580, + "verification_key": 2925 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", + "Model:": "85", + "CPU(s):": "96", + "BogoMIPS:": "5400.00", + "L2 cache:": "48 MiB (48 instances)", + "L3 cache:": "66 MiB (2 instances)", + "Stepping:": "4", + "L1d cache:": "1.5 MiB (48 instances)", + "L1i cache:": "1.5 MiB (48 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "46 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", + "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", + "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Core(s) per socket:": "24", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", + "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", + "Vulnerability Meltdown:": "Mitigation; PTI", + "Vulnerability Retbleed:": "Mitigation; IBRS", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", + "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": 0, + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0, + "num_wires": 4, + "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", + "witness_compiler": "c++" + }, + { + "circuit_id": "ed55e890-c65c-4978-94c2-62c36da8309a", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-15T02:07:14.554Z", + "proving_scheme": "groth16", + "status": "Ready", + "compute_time": "P0DT00H00M04.639042S", + "compute_times": { + "total": 4.670196183025837, + "queued": 1.192037, + "clean_up": 0.0004636390367522836, + "create_cpp": 0.029885608004406095, + "file_setup": 0.19036857096944004, + "compile_cpp": 2.9288433239562437, + "create_r1cs": 0.005293185007758439, + "save_results": 0.002376335905864835, + "get_r1cs_info": 0.00021172501146793365, + "groth16_setup": 0.7855832269415259, + "export_verification_key": 0.7263032890623435, + "download_trusted_setup_file": 0.0007130390731617808 + }, + "file_sizes": { + "total": 225418, + "circuit": 213240, + "total_gb": 0.000225418, + "total_mb": 0.225418, + "circuit.dat": 6176, + "code.tar.gz": 497, + "circuit.zkey": 2580, + "verification_key": 2925 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf tsc_known_freq pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cat_l2 cdp_l3 invpcid_single intel_ppin cdp_l2 ssbd mba ibrs ibpb stibp ibrs_enhanced tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 avx2 smep bmi2 erms invpcid cqm rdt_a avx512f avx512dq rdseed adx smap avx512ifma clflushopt clwb intel_pt avx512cd sha_ni avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local split_lock_detect avx_vnni avx512_bf16 wbnoinvd dtherm ida arat pln pts hwp hwp_act_window hwp_epp hwp_pkg_req hfi avx512vbmi umip pku ospke waitpkg avx512_vbmi2 gfni vaes vpclmulqdq avx512_vnni avx512_bitalg tme avx512_vpopcntdq la57 rdpid bus_lock_detect cldemote movdiri movdir64b enqcmd fsrm md_clear serialize tsxldtrk pconfig arch_lbr ibt amx_bf16 avx512_fp16 amx_tile amx_int8 flush_l1d arch_capabilities", + "Model:": "143", + "CPU(s):": "128", + "BogoMIPS:": "5600.00", + "L2 cache:": "128 MiB (64 instances)", + "L3 cache:": "120 MiB (2 instances)", + "Stepping:": "7", + "L1d cache:": "3 MiB (64 instances)", + "L1i cache:": "2 MiB (64 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8462Y+", + "CPU max MHz:": "4100.0000", + "CPU min MHz:": "800.0000", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "52 bits physical, 57 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0-31,64-95", + "NUMA node1 CPU(s):": "32-63,96-127", + "Vulnerability Mds:": "Not affected", + "Core(s) per socket:": "32", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Not affected", + "On-line CPU(s) list:": "0,5-64,69-127", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "1-4,65-68", + "Vulnerability Meltdown:": "Not affected", + "Vulnerability Retbleed:": "Not affected", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; Enhanced IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS SW sequence", + "Vulnerability Itlb multihit:": "Not affected", + "Vulnerability Mmio stale data:": "Not affected", + "Vulnerability Tsx async abort:": "Not affected", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": 0, + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0, + "num_wires": 4, + "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", + "witness_compiler": "c++" + }, + { + "circuit_id": "f6bf151d-2fd0-488a-8dd5-f8fafee7a06b", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-15T02:07:14.087Z", + "proving_scheme": "groth16", + "status": "Ready", + "compute_time": "P0DT00H00M07.582657S", + "compute_times": { + "total": 7.672385489568114, + "queued": 1.09439, + "clean_up": 0.002001248300075531, + "create_cpp": 0.05665309727191925, + "file_setup": 0.28869662806391716, + "compile_cpp": 4.477934097871184, + "create_r1cs": 0.018961958587169647, + "save_results": 0.005625590682029724, + "get_r1cs_info": 0.0006451867520809174, + "groth16_setup": 1.400868695229292, + "export_verification_key": 1.4178343042731285, + "download_trusted_setup_file": 0.002523709088563919 + }, + "file_sizes": { + "total": 225418, + "circuit": 213240, + "total_gb": 0.000225418, + "total_mb": 0.225418, + "circuit.dat": 6176, + "code.tar.gz": 497, + "circuit.zkey": 2580, + "verification_key": 2925 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", + "Model:": "85", + "CPU(s):": "96", + "BogoMIPS:": "5400.00", + "L2 cache:": "48 MiB (48 instances)", + "L3 cache:": "66 MiB (2 instances)", + "Stepping:": "4", + "L1d cache:": "1.5 MiB (48 instances)", + "L1i cache:": "1.5 MiB (48 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "46 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", + "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", + "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Core(s) per socket:": "24", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", + "On-line CPU(s) list:": "0,1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41-49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89-95", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88", + "Vulnerability Meltdown:": "Mitigation; PTI", + "Vulnerability Retbleed:": "Mitigation; IBRS", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", + "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": 0, + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0, + "num_wires": 4, + "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", + "witness_compiler": "c++" + }, + { + "circuit_id": "1ffbe8f9-87c8-4e42-baa8-7aa33c4d17ee", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-15T02:07:13.808Z", + "proving_scheme": "groth16", + "status": "Ready", + "compute_time": "P0DT00H00M07.789518S", + "compute_times": { + "total": 7.865276617929339, + "queued": 1.233985, + "clean_up": 0.0009253527969121933, + "create_cpp": 0.057666877284646034, + "file_setup": 0.42827480658888817, + "compile_cpp": 4.4704748671501875, + "create_r1cs": 0.009908992797136307, + "save_results": 0.0053389593958854675, + "get_r1cs_info": 0.0004046596586704254, + "groth16_setup": 1.474434545263648, + "export_verification_key": 1.4163631908595562, + "download_trusted_setup_file": 0.0010532364249229431 + }, + "file_sizes": { + "total": 225418, + "circuit": 213240, + "total_gb": 0.000225418, + "total_mb": 0.225418, + "circuit.dat": 6176, + "code.tar.gz": 497, + "circuit.zkey": 2580, + "verification_key": 2925 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", + "Model:": "85", + "CPU(s):": "96", + "BogoMIPS:": "5400.00", + "L2 cache:": "48 MiB (48 instances)", + "L3 cache:": "66 MiB (2 instances)", + "Stepping:": "4", + "L1d cache:": "1.5 MiB (48 instances)", + "L1i cache:": "1.5 MiB (48 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "46 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", + "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", + "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Core(s) per socket:": "24", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", + "On-line CPU(s) list:": "0,1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41-49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89-95", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88", + "Vulnerability Meltdown:": "Mitigation; PTI", + "Vulnerability Retbleed:": "Mitigation; IBRS", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", + "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": 0, + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0, + "num_wires": 4, + "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", + "witness_compiler": "c++" + }, + { + "circuit_id": "d40bcb67-e940-4fb1-b733-5382a0d24818", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-15T02:07:13.622Z", + "proving_scheme": "groth16", + "status": "Ready", + "compute_time": "P0DT00H00M07.484271S", + "compute_times": { + "total": 7.556855067610741, + "queued": 1.163986, + "clean_up": 0.00173221156001091, + "create_cpp": 0.053104178979992867, + "file_setup": 0.25219348073005676, + "compile_cpp": 4.602972414344549, + "create_r1cs": 0.016127610579133034, + "save_results": 0.0044687893241643906, + "get_r1cs_info": 0.0006831474602222443, + "groth16_setup": 1.384469285607338, + "export_verification_key": 1.2383170630782843, + "download_trusted_setup_file": 0.002438986673951149 + }, + "file_sizes": { + "total": 225418, + "circuit": 213240, + "total_gb": 0.000225418, + "total_mb": 0.225418, + "circuit.dat": 6176, + "code.tar.gz": 497, + "circuit.zkey": 2580, + "verification_key": 2925 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", + "Model:": "85", + "CPU(s):": "96", + "BogoMIPS:": "5400.00", + "L2 cache:": "48 MiB (48 instances)", + "L3 cache:": "66 MiB (2 instances)", + "Stepping:": "4", + "L1d cache:": "1.5 MiB (48 instances)", + "L1i cache:": "1.5 MiB (48 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "46 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", + "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", + "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Core(s) per socket:": "24", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", + "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", + "Vulnerability Meltdown:": "Mitigation; PTI", + "Vulnerability Retbleed:": "Mitigation; IBRS", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", + "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": 0, + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0, + "num_wires": 4, + "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", + "witness_compiler": "c++" + }, + { + "circuit_id": "c43fd46d-1d67-4e43-9087-2fd558de038f", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-15T02:03:24.311Z", + "proving_scheme": "groth16", + "status": "Ready", + "compute_time": "P0DT00H00M07.415030S", + "compute_times": { + "total": 7.4919023886322975, + "queued": 15.399161, + "clean_up": 0.0017888862639665604, + "create_cpp": 0.04686305299401283, + "file_setup": 0.2366184201091528, + "compile_cpp": 4.676926027983427, + "create_r1cs": 0.016247382387518883, + "save_results": 0.005460144951939583, + "get_r1cs_info": 0.0005027409642934799, + "groth16_setup": 1.222083330154419, + "export_verification_key": 1.2832992672920227, + "download_trusted_setup_file": 0.001483755186200142 + }, + "file_sizes": { + "total": 225418, + "circuit": 213240, + "total_gb": 0.000225418, + "total_mb": 0.225418, + "circuit.dat": 6176, + "code.tar.gz": 497, + "circuit.zkey": 2580, + "verification_key": 2925 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", + "Model:": "85", + "CPU(s):": "96", + "BogoMIPS:": "5400.00", + "L2 cache:": "48 MiB (48 instances)", + "L3 cache:": "66 MiB (2 instances)", + "Stepping:": "4", + "L1d cache:": "1.5 MiB (48 instances)", + "L1i cache:": "1.5 MiB (48 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "46 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", + "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", + "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Core(s) per socket:": "24", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", + "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", + "Vulnerability Meltdown:": "Mitigation; PTI", + "Vulnerability Retbleed:": "Mitigation; IBRS", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", + "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": 0, + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0, + "num_wires": 4, + "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", + "witness_compiler": "c++" + }, + { + "circuit_id": "9e12ff5e-5632-46c4-9ab1-3349ec0b131e", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-15T02:03:23.911Z", + "proving_scheme": "groth16", + "status": "Ready", + "compute_time": "P0DT00H00M04.661941S", + "compute_times": { + "total": 4.693298900965601, + "queued": 14.904538, + "clean_up": 0.00046248501166701317, + "create_cpp": 0.030274335062131286, + "file_setup": 0.20949947088956833, + "compile_cpp": 2.9299584419932216, + "create_r1cs": 0.005165933980606496, + "save_results": 0.0026655279798433185, + "get_r1cs_info": 0.00022936402820050716, + "groth16_setup": 0.7548628870863467, + "export_verification_key": 0.7593056479236111, + "download_trusted_setup_file": 0.0007180699612945318 + }, + "file_sizes": { + "total": 225418, + "circuit": 213240, + "total_gb": 0.000225418, + "total_mb": 0.225418, + "circuit.dat": 6176, + "code.tar.gz": 497, + "circuit.zkey": 2580, + "verification_key": 2925 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf tsc_known_freq pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cat_l2 cdp_l3 invpcid_single intel_ppin cdp_l2 ssbd mba ibrs ibpb stibp ibrs_enhanced tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 avx2 smep bmi2 erms invpcid cqm rdt_a avx512f avx512dq rdseed adx smap avx512ifma clflushopt clwb intel_pt avx512cd sha_ni avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local split_lock_detect avx_vnni avx512_bf16 wbnoinvd dtherm ida arat pln pts hwp hwp_act_window hwp_epp hwp_pkg_req hfi avx512vbmi umip pku ospke waitpkg avx512_vbmi2 gfni vaes vpclmulqdq avx512_vnni avx512_bitalg tme avx512_vpopcntdq la57 rdpid bus_lock_detect cldemote movdiri movdir64b enqcmd fsrm md_clear serialize tsxldtrk pconfig arch_lbr ibt amx_bf16 avx512_fp16 amx_tile amx_int8 flush_l1d arch_capabilities", + "Model:": "143", + "CPU(s):": "128", + "BogoMIPS:": "5600.00", + "L2 cache:": "128 MiB (64 instances)", + "L3 cache:": "120 MiB (2 instances)", + "Stepping:": "7", + "L1d cache:": "3 MiB (64 instances)", + "L1i cache:": "2 MiB (64 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8462Y+", + "CPU max MHz:": "4100.0000", + "CPU min MHz:": "800.0000", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "52 bits physical, 57 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0-31,64-95", + "NUMA node1 CPU(s):": "32-63,96-127", + "Vulnerability Mds:": "Not affected", + "Core(s) per socket:": "32", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Not affected", + "On-line CPU(s) list:": "0,5-64,69-127", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "1-4,65-68", + "Vulnerability Meltdown:": "Not affected", + "Vulnerability Retbleed:": "Not affected", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; Enhanced IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS SW sequence", + "Vulnerability Itlb multihit:": "Not affected", + "Vulnerability Mmio stale data:": "Not affected", + "Vulnerability Tsx async abort:": "Not affected", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": 0, + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0, + "num_wires": 4, + "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", + "witness_compiler": "c++" + }, + { + "circuit_id": "a5de0eca-b376-4d33-91b6-9a30d4235aa7", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-15T02:03:23.662Z", + "proving_scheme": "groth16", + "status": "Ready", + "compute_time": "P0DT00H00M04.640504S", + "compute_times": { + "total": 4.674585030064918, + "queued": 9.563851, + "clean_up": 0.0004374060081318021, + "create_cpp": 0.029949681949801743, + "file_setup": 0.18676624703221023, + "compile_cpp": 2.926436795038171, + "create_r1cs": 0.00553747802041471, + "save_results": 0.0025256150402128696, + "get_r1cs_info": 0.00030519498977810144, + "groth16_setup": 0.74638494302053, + "export_verification_key": 0.7754071449162439, + "download_trusted_setup_file": 0.0006875250255689025 + }, + "file_sizes": { + "total": 225418, + "circuit": 213240, + "total_gb": 0.000225418, + "total_mb": 0.225418, + "circuit.dat": 6176, + "code.tar.gz": 497, + "circuit.zkey": 2580, + "verification_key": 2925 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf tsc_known_freq pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cat_l2 cdp_l3 invpcid_single intel_ppin cdp_l2 ssbd mba ibrs ibpb stibp ibrs_enhanced tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 avx2 smep bmi2 erms invpcid cqm rdt_a avx512f avx512dq rdseed adx smap avx512ifma clflushopt clwb intel_pt avx512cd sha_ni avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local split_lock_detect avx_vnni avx512_bf16 wbnoinvd dtherm ida arat pln pts hwp hwp_act_window hwp_epp hwp_pkg_req hfi avx512vbmi umip pku ospke waitpkg avx512_vbmi2 gfni vaes vpclmulqdq avx512_vnni avx512_bitalg tme avx512_vpopcntdq la57 rdpid bus_lock_detect cldemote movdiri movdir64b enqcmd fsrm md_clear serialize tsxldtrk pconfig arch_lbr ibt amx_bf16 avx512_fp16 amx_tile amx_int8 flush_l1d arch_capabilities", + "Model:": "143", + "CPU(s):": "128", + "BogoMIPS:": "5600.00", + "L2 cache:": "128 MiB (64 instances)", + "L3 cache:": "120 MiB (2 instances)", + "Stepping:": "7", + "L1d cache:": "3 MiB (64 instances)", + "L1i cache:": "2 MiB (64 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8462Y+", + "CPU max MHz:": "4100.0000", + "CPU min MHz:": "800.0000", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "52 bits physical, 57 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0-31,64-95", + "NUMA node1 CPU(s):": "32-63,96-127", + "Vulnerability Mds:": "Not affected", + "Core(s) per socket:": "32", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Not affected", + "On-line CPU(s) list:": "0,5-64,69-127", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "1-4,65-68", + "Vulnerability Meltdown:": "Not affected", + "Vulnerability Retbleed:": "Not affected", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; Enhanced IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS SW sequence", + "Vulnerability Itlb multihit:": "Not affected", + "Vulnerability Mmio stale data:": "Not affected", + "Vulnerability Tsx async abort:": "Not affected", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": 0, + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0, + "num_wires": 4, + "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", + "witness_compiler": "c++" + }, + { + "circuit_id": "3eec50d0-8bc1-4266-8506-a76961a3627d", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-15T02:03:23.403Z", + "proving_scheme": "groth16", + "status": "Ready", + "compute_time": "P0DT00H00M04.659658S", + "compute_times": { + "total": 4.6912087330129, + "queued": 0.999787, + "clean_up": 0.0005085699958726764, + "create_cpp": 0.030190049903467298, + "file_setup": 0.1714191420469433, + "compile_cpp": 2.942204582039267, + "create_r1cs": 0.0055296330247074366, + "save_results": 0.0026200800202786922, + "get_r1cs_info": 0.0003244479885324836, + "groth16_setup": 0.7581778330495581, + "export_verification_key": 0.7793734009610489, + "download_trusted_setup_file": 0.0007095789769664407 + }, + "file_sizes": { + "total": 225418, + "circuit": 213240, + "total_gb": 0.000225418, + "total_mb": 0.225418, + "circuit.dat": 6176, + "code.tar.gz": 497, + "circuit.zkey": 2580, + "verification_key": 2925 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf tsc_known_freq pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cat_l2 cdp_l3 invpcid_single intel_ppin cdp_l2 ssbd mba ibrs ibpb stibp ibrs_enhanced tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 avx2 smep bmi2 erms invpcid cqm rdt_a avx512f avx512dq rdseed adx smap avx512ifma clflushopt clwb intel_pt avx512cd sha_ni avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local split_lock_detect avx_vnni avx512_bf16 wbnoinvd dtherm ida arat pln pts hwp hwp_act_window hwp_epp hwp_pkg_req hfi avx512vbmi umip pku ospke waitpkg avx512_vbmi2 gfni vaes vpclmulqdq avx512_vnni avx512_bitalg tme avx512_vpopcntdq la57 rdpid bus_lock_detect cldemote movdiri movdir64b enqcmd fsrm md_clear serialize tsxldtrk pconfig arch_lbr ibt amx_bf16 avx512_fp16 amx_tile amx_int8 flush_l1d arch_capabilities", + "Model:": "143", + "CPU(s):": "128", + "BogoMIPS:": "5600.00", + "L2 cache:": "128 MiB (64 instances)", + "L3 cache:": "120 MiB (2 instances)", + "Stepping:": "7", + "L1d cache:": "3 MiB (64 instances)", + "L1i cache:": "2 MiB (64 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8462Y+", + "CPU max MHz:": "4100.0000", + "CPU min MHz:": "800.0000", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "52 bits physical, 57 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0-31,64-95", + "NUMA node1 CPU(s):": "32-63,96-127", + "Vulnerability Mds:": "Not affected", + "Core(s) per socket:": "32", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Not affected", + "On-line CPU(s) list:": "0,5-64,69-127", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "1-4,65-68", + "Vulnerability Meltdown:": "Not affected", + "Vulnerability Retbleed:": "Not affected", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; Enhanced IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS SW sequence", + "Vulnerability Itlb multihit:": "Not affected", + "Vulnerability Mmio stale data:": "Not affected", + "Vulnerability Tsx async abort:": "Not affected", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": 0, + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0, + "num_wires": 4, + "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", + "witness_compiler": "c++" + }, + { + "circuit_id": "596a0973-b6a7-4e8f-b6d6-9f2ddb483f02", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-15T02:01:10.696Z", + "proving_scheme": "groth16", + "status": "Ready", + "compute_time": "P0DT00H00M04.600004S", + "compute_times": { + "total": 4.634266157983802, + "queued": 1.007035, + "clean_up": 0.0004430810222402215, + "create_cpp": 0.029862282914109528, + "file_setup": 0.19106685707811266, + "compile_cpp": 2.921206888044253, + "create_r1cs": 0.005109910038299859, + "save_results": 0.003121474990621209, + "get_r1cs_info": 0.0002160179428756237, + "groth16_setup": 0.7425107170129195, + "export_verification_key": 0.7398575020488352, + "download_trusted_setup_file": 0.000722195953130722 + }, + "file_sizes": { + "total": 225418, + "circuit": 213240, + "total_gb": 0.000225418, + "total_mb": 0.225418, + "circuit.dat": 6176, + "code.tar.gz": 497, + "circuit.zkey": 2580, + "verification_key": 2925 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf tsc_known_freq pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cat_l2 cdp_l3 invpcid_single intel_ppin cdp_l2 ssbd mba ibrs ibpb stibp ibrs_enhanced tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 avx2 smep bmi2 erms invpcid cqm rdt_a avx512f avx512dq rdseed adx smap avx512ifma clflushopt clwb intel_pt avx512cd sha_ni avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local split_lock_detect avx_vnni avx512_bf16 wbnoinvd dtherm ida arat pln pts hwp hwp_act_window hwp_epp hwp_pkg_req hfi avx512vbmi umip pku ospke waitpkg avx512_vbmi2 gfni vaes vpclmulqdq avx512_vnni avx512_bitalg tme avx512_vpopcntdq la57 rdpid bus_lock_detect cldemote movdiri movdir64b enqcmd fsrm md_clear serialize tsxldtrk pconfig arch_lbr ibt amx_bf16 avx512_fp16 amx_tile amx_int8 flush_l1d arch_capabilities", + "Model:": "143", + "CPU(s):": "128", + "BogoMIPS:": "5600.00", + "L2 cache:": "128 MiB (64 instances)", + "L3 cache:": "120 MiB (2 instances)", + "Stepping:": "7", + "L1d cache:": "3 MiB (64 instances)", + "L1i cache:": "2 MiB (64 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8462Y+", + "CPU max MHz:": "4100.0000", + "CPU min MHz:": "800.0000", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "52 bits physical, 57 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0-31,64-95", + "NUMA node1 CPU(s):": "32-63,96-127", + "Vulnerability Mds:": "Not affected", + "Core(s) per socket:": "32", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Not affected", + "On-line CPU(s) list:": "0,5-64,69-127", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "1-4,65-68", + "Vulnerability Meltdown:": "Not affected", + "Vulnerability Retbleed:": "Not affected", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; Enhanced IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS SW sequence", + "Vulnerability Itlb multihit:": "Not affected", + "Vulnerability Mmio stale data:": "Not affected", + "Vulnerability Tsx async abort:": "Not affected", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": 0, + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0, + "num_wires": 4, + "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", + "witness_compiler": "c++" + }, + { + "circuit_id": "4f5b0304-a53e-45e9-b83f-8e06611dc640", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-15T01:52:29.407Z", + "proving_scheme": "groth16", + "status": "Ready", + "compute_time": "P0DT00H00M07.795432S", + "compute_times": { + "total": 7.873008634895086, + "queued": 31.342195, + "clean_up": 0.0018993616104125977, + "create_cpp": 0.055077794939279556, + "file_setup": 0.24360725842416286, + "compile_cpp": 4.703614357858896, + "create_r1cs": 0.02081167884171009, + "save_results": 0.0056080929934978485, + "get_r1cs_info": 0.0008842349052429199, + "groth16_setup": 1.4346165657043457, + "export_verification_key": 1.4034891910851002, + "download_trusted_setup_file": 0.002933880314230919 + }, + "file_sizes": { + "total": 225418, + "circuit": 213240, + "total_gb": 0.000225418, + "total_mb": 0.225418, + "circuit.dat": 6176, + "code.tar.gz": 497, + "circuit.zkey": 2580, + "verification_key": 2925 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", + "Model:": "85", + "CPU(s):": "96", + "BogoMIPS:": "5400.00", + "L2 cache:": "48 MiB (48 instances)", + "L3 cache:": "66 MiB (2 instances)", + "Stepping:": "4", + "L1d cache:": "1.5 MiB (48 instances)", + "L1i cache:": "1.5 MiB (48 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "46 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", + "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", + "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Core(s) per socket:": "24", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", + "On-line CPU(s) list:": "0,1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41-49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89-95", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88", + "Vulnerability Meltdown:": "Mitigation; PTI", + "Vulnerability Retbleed:": "Mitigation; IBRS", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", + "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": 0, + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0, + "num_wires": 4, + "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", + "witness_compiler": "c++" + }, + { + "circuit_id": "64c8849e-21b2-46a5-8786-87d5fe82f4d6", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-15T01:52:28.573Z", + "proving_scheme": "groth16", + "status": "Ready", + "compute_time": "P0DT00H00M07.741476S", + "compute_times": { + "total": 7.819348992779851, + "queued": 31.913431, + "clean_up": 0.0019285250455141068, + "create_cpp": 0.04896355792880058, + "file_setup": 0.23411452770233154, + "compile_cpp": 4.654933050274849, + "create_r1cs": 0.016990680247545242, + "save_results": 0.005897335708141327, + "get_r1cs_info": 0.0007398743182420731, + "groth16_setup": 1.392984814941883, + "export_verification_key": 1.4599114395678043, + "download_trusted_setup_file": 0.0024141818284988403 + }, + "file_sizes": { + "total": 225418, + "circuit": 213240, + "total_gb": 0.000225418, + "total_mb": 0.225418, + "circuit.dat": 6176, + "code.tar.gz": 497, + "circuit.zkey": 2580, + "verification_key": 2925 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", + "Model:": "85", + "CPU(s):": "96", + "BogoMIPS:": "5400.00", + "L2 cache:": "48 MiB (48 instances)", + "L3 cache:": "66 MiB (2 instances)", + "Stepping:": "4", + "L1d cache:": "1.5 MiB (48 instances)", + "L1i cache:": "1.5 MiB (48 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "46 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", + "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", + "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Core(s) per socket:": "24", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", + "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", + "Vulnerability Meltdown:": "Mitigation; PTI", + "Vulnerability Retbleed:": "Mitigation; IBRS", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", + "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": 0, + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0, + "num_wires": 4, + "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", + "witness_compiler": "c++" + }, + { + "circuit_id": "696b5f3c-ac4c-4c88-a40a-7b8d5239cb47", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-15T01:52:28.552Z", + "proving_scheme": "groth16", + "status": "Ready", + "compute_time": "P0DT00H00M04.657088S", + "compute_times": { + "total": 4.6882268759654835, + "queued": 29.904162, + "clean_up": 0.0004538500215858221, + "create_cpp": 0.029869360965676606, + "file_setup": 0.18104861094616354, + "compile_cpp": 2.9436706830747426, + "create_r1cs": 0.005239389953203499, + "save_results": 0.0024021610151976347, + "get_r1cs_info": 0.00020038604270666838, + "groth16_setup": 0.762411353061907, + "export_verification_key": 0.7620555579196662, + "download_trusted_setup_file": 0.0007234419463202357 + }, + "file_sizes": { + "total": 225418, + "circuit": 213240, + "total_gb": 0.000225418, + "total_mb": 0.225418, + "circuit.dat": 6176, + "code.tar.gz": 497, + "circuit.zkey": 2580, + "verification_key": 2925 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf tsc_known_freq pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cat_l2 cdp_l3 invpcid_single intel_ppin cdp_l2 ssbd mba ibrs ibpb stibp ibrs_enhanced tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 avx2 smep bmi2 erms invpcid cqm rdt_a avx512f avx512dq rdseed adx smap avx512ifma clflushopt clwb intel_pt avx512cd sha_ni avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local split_lock_detect avx_vnni avx512_bf16 wbnoinvd dtherm ida arat pln pts hwp hwp_act_window hwp_epp hwp_pkg_req hfi avx512vbmi umip pku ospke waitpkg avx512_vbmi2 gfni vaes vpclmulqdq avx512_vnni avx512_bitalg tme avx512_vpopcntdq la57 rdpid bus_lock_detect cldemote movdiri movdir64b enqcmd fsrm md_clear serialize tsxldtrk pconfig arch_lbr ibt amx_bf16 avx512_fp16 amx_tile amx_int8 flush_l1d arch_capabilities", + "Model:": "143", + "CPU(s):": "128", + "BogoMIPS:": "5600.00", + "L2 cache:": "128 MiB (64 instances)", + "L3 cache:": "120 MiB (2 instances)", + "Stepping:": "7", + "L1d cache:": "3 MiB (64 instances)", + "L1i cache:": "2 MiB (64 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8462Y+", + "CPU max MHz:": "4100.0000", + "CPU min MHz:": "800.0000", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "52 bits physical, 57 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0-31,64-95", + "NUMA node1 CPU(s):": "32-63,96-127", + "Vulnerability Mds:": "Not affected", + "Core(s) per socket:": "32", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Not affected", + "On-line CPU(s) list:": "0,5-64,69-127", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "1-4,65-68", + "Vulnerability Meltdown:": "Not affected", + "Vulnerability Retbleed:": "Not affected", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; Enhanced IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS SW sequence", + "Vulnerability Itlb multihit:": "Not affected", + "Vulnerability Mmio stale data:": "Not affected", + "Vulnerability Tsx async abort:": "Not affected", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": 0, + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0, + "num_wires": 4, + "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", + "witness_compiler": "c++" + }, + { + "circuit_id": "b5d133fc-f5f0-4fd8-8a37-bec3f105f957", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-15T01:52:28.531Z", + "proving_scheme": "groth16", + "status": "Ready", + "compute_time": "P0DT00H00M07.815061S", + "compute_times": { + "total": 7.892049107700586, + "queued": 26.139954, + "clean_up": 0.0009030122309923172, + "create_cpp": 0.04740026593208313, + "file_setup": 0.24122893437743187, + "compile_cpp": 4.7460735235363245, + "create_r1cs": 0.010444654151797295, + "save_results": 0.003931155428290367, + "get_r1cs_info": 0.0007425416260957718, + "groth16_setup": 1.4072796031832695, + "export_verification_key": 1.4309465549886227, + "download_trusted_setup_file": 0.0025080330669879913 + }, + "file_sizes": { + "total": 225418, + "circuit": 213240, + "total_gb": 0.000225418, + "total_mb": 0.225418, + "circuit.dat": 6176, + "code.tar.gz": 497, + "circuit.zkey": 2580, + "verification_key": 2925 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", + "Model:": "85", + "CPU(s):": "96", + "BogoMIPS:": "5400.00", + "L2 cache:": "48 MiB (48 instances)", + "L3 cache:": "66 MiB (2 instances)", + "Stepping:": "4", + "L1d cache:": "1.5 MiB (48 instances)", + "L1i cache:": "1.5 MiB (48 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "46 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", + "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", + "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Core(s) per socket:": "24", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", + "On-line CPU(s) list:": "0,1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41-49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89-95", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88", + "Vulnerability Meltdown:": "Mitigation; PTI", + "Vulnerability Retbleed:": "Mitigation; IBRS", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", + "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": 0, + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0, + "num_wires": 4, + "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", + "witness_compiler": "c++" + }, + { + "circuit_id": "b4a23df2-a7e7-4eb8-9ce1-f9d52a7b5efd", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-15T01:52:27.630Z", + "proving_scheme": "groth16", + "status": "Ready", + "compute_time": "P0DT00H00M07.577744S", + "compute_times": { + "total": 7.656200651079416, + "queued": 24.444641, + "clean_up": 0.0016275551170110703, + "create_cpp": 0.04782847873866558, + "file_setup": 0.25123047828674316, + "compile_cpp": 4.509421624243259, + "create_r1cs": 0.017046067863702774, + "save_results": 0.005663003772497177, + "get_r1cs_info": 0.000681556761264801, + "groth16_setup": 1.3982542753219604, + "export_verification_key": 1.421325797215104, + "download_trusted_setup_file": 0.0025193486362695694 + }, + "file_sizes": { + "total": 225450, + "circuit": 213240, + "total_gb": 0.00022545, + "total_mb": 0.22545, + "circuit.dat": 6176, + "code.tar.gz": 529, + "circuit.zkey": 2580, + "verification_key": 2925 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tgz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", + "Model:": "85", + "CPU(s):": "96", + "BogoMIPS:": "5400.00", + "L2 cache:": "48 MiB (48 instances)", + "L3 cache:": "66 MiB (2 instances)", + "Stepping:": "4", + "L1d cache:": "1.5 MiB (48 instances)", + "L1i cache:": "1.5 MiB (48 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "46 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", + "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", + "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Core(s) per socket:": "24", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", + "On-line CPU(s) list:": "0,1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41-49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89-95", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88", + "Vulnerability Meltdown:": "Mitigation; PTI", + "Vulnerability Retbleed:": "Mitigation; IBRS", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", + "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": 0, + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0, + "num_wires": 4, + "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", + "witness_compiler": "c++" + }, + { + "circuit_id": "dc9db61e-d2c3-40f8-a3f3-afbd9e8042c4", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-15T01:52:27.313Z", + "proving_scheme": "groth16", + "status": "Ready", + "compute_time": "P0DT00H00M07.545149S", + "compute_times": { + "total": 7.623603418469429, + "queued": 24.498309, + "clean_up": 0.0017016865313053131, + "create_cpp": 0.04762609116733074, + "file_setup": 0.24350149184465408, + "compile_cpp": 4.597848556935787, + "create_r1cs": 0.012152310460805893, + "save_results": 0.005475817248225212, + "get_r1cs_info": 0.0004205126315355301, + "groth16_setup": 1.3248953483998775, + "export_verification_key": 1.3882451467216015, + "download_trusted_setup_file": 0.0009885765612125397 + }, + "file_sizes": { + "total": 225450, + "circuit": 213240, + "total_gb": 0.00022545, + "total_mb": 0.22545, + "circuit.dat": 6176, + "code.tar.gz": 529, + "circuit.zkey": 2580, + "verification_key": 2925 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tgz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", + "Model:": "85", + "CPU(s):": "96", + "BogoMIPS:": "5400.00", + "L2 cache:": "48 MiB (48 instances)", + "L3 cache:": "66 MiB (2 instances)", + "Stepping:": "4", + "L1d cache:": "1.5 MiB (48 instances)", + "L1i cache:": "1.5 MiB (48 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "46 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", + "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", + "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Core(s) per socket:": "24", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", + "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", + "Vulnerability Meltdown:": "Mitigation; PTI", + "Vulnerability Retbleed:": "Mitigation; IBRS", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", + "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": 0, + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0, + "num_wires": 4, + "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", + "witness_compiler": "c++" + }, + { + "circuit_id": "2c1beb82-6dc9-44ea-bbf7-3514b27e47fe", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-15T01:52:27.047Z", + "proving_scheme": "groth16", + "status": "Ready", + "compute_time": "P0DT00H00M04.629165S", + "compute_times": { + "total": 4.66044994990807, + "queued": 25.910415, + "clean_up": 0.00046650797594338655, + "create_cpp": 0.030314832110889256, + "file_setup": 0.17054930399172008, + "compile_cpp": 2.9262271099723876, + "create_r1cs": 0.005123129929415882, + "save_results": 0.0024022479774430394, + "get_r1cs_info": 0.0003190510906279087, + "groth16_setup": 0.7423932970268652, + "export_verification_key": 0.7817557220114395, + "download_trusted_setup_file": 0.0007441989146173 + }, + "file_sizes": { + "total": 225420, + "circuit": 213240, + "total_gb": 0.00022542, + "total_mb": 0.22542, + "circuit.dat": 6176, + "code.tar.gz": 499, + "circuit.zkey": 2580, + "verification_key": 2925 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf tsc_known_freq pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cat_l2 cdp_l3 invpcid_single intel_ppin cdp_l2 ssbd mba ibrs ibpb stibp ibrs_enhanced tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 avx2 smep bmi2 erms invpcid cqm rdt_a avx512f avx512dq rdseed adx smap avx512ifma clflushopt clwb intel_pt avx512cd sha_ni avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local split_lock_detect avx_vnni avx512_bf16 wbnoinvd dtherm ida arat pln pts hwp hwp_act_window hwp_epp hwp_pkg_req hfi avx512vbmi umip pku ospke waitpkg avx512_vbmi2 gfni vaes vpclmulqdq avx512_vnni avx512_bitalg tme avx512_vpopcntdq la57 rdpid bus_lock_detect cldemote movdiri movdir64b enqcmd fsrm md_clear serialize tsxldtrk pconfig arch_lbr ibt amx_bf16 avx512_fp16 amx_tile amx_int8 flush_l1d arch_capabilities", + "Model:": "143", + "CPU(s):": "128", + "BogoMIPS:": "5600.00", + "L2 cache:": "128 MiB (64 instances)", + "L3 cache:": "120 MiB (2 instances)", + "Stepping:": "7", + "L1d cache:": "3 MiB (64 instances)", + "L1i cache:": "2 MiB (64 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8462Y+", + "CPU max MHz:": "4100.0000", + "CPU min MHz:": "800.0000", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "52 bits physical, 57 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0-31,64-95", + "NUMA node1 CPU(s):": "32-63,96-127", + "Vulnerability Mds:": "Not affected", + "Core(s) per socket:": "32", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Not affected", + "On-line CPU(s) list:": "0,5-64,69-127", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "1-4,65-68", + "Vulnerability Meltdown:": "Not affected", + "Vulnerability Retbleed:": "Not affected", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; Enhanced IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS SW sequence", + "Vulnerability Itlb multihit:": "Not affected", + "Vulnerability Mmio stale data:": "Not affected", + "Vulnerability Tsx async abort:": "Not affected", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": 0, + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0, + "num_wires": 4, + "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", + "witness_compiler": "c++" + }, + { + "circuit_id": "d492fd4d-7509-45fb-87b3-adef4fd745df", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-15T01:52:26.747Z", + "proving_scheme": "groth16", + "status": "Ready", + "compute_time": "P0DT00H00M04.578700S", + "compute_times": { + "total": 4.609950889949687, + "queued": 16.176819, + "clean_up": 0.0004615719662979245, + "create_cpp": 0.029976019985042512, + "file_setup": 0.16958309896290302, + "compile_cpp": 2.9370939240325242, + "create_r1cs": 0.005518535035662353, + "save_results": 0.0025302410358563066, + "get_r1cs_info": 0.00021990097593516111, + "groth16_setup": 0.7456176759442315, + "export_verification_key": 0.7180980830453336, + "download_trusted_setup_file": 0.0006872049998492002 + }, + "file_sizes": { + "total": 225450, + "circuit": 213240, + "total_gb": 0.00022545, + "total_mb": 0.22545, + "circuit.dat": 6176, + "code.tar.gz": 529, + "circuit.zkey": 2580, + "verification_key": 2925 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tgz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf tsc_known_freq pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cat_l2 cdp_l3 invpcid_single intel_ppin cdp_l2 ssbd mba ibrs ibpb stibp ibrs_enhanced tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 avx2 smep bmi2 erms invpcid cqm rdt_a avx512f avx512dq rdseed adx smap avx512ifma clflushopt clwb intel_pt avx512cd sha_ni avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local split_lock_detect avx_vnni avx512_bf16 wbnoinvd dtherm ida arat pln pts hwp hwp_act_window hwp_epp hwp_pkg_req hfi avx512vbmi umip pku ospke waitpkg avx512_vbmi2 gfni vaes vpclmulqdq avx512_vnni avx512_bitalg tme avx512_vpopcntdq la57 rdpid bus_lock_detect cldemote movdiri movdir64b enqcmd fsrm md_clear serialize tsxldtrk pconfig arch_lbr ibt amx_bf16 avx512_fp16 amx_tile amx_int8 flush_l1d arch_capabilities", + "Model:": "143", + "CPU(s):": "128", + "BogoMIPS:": "5600.00", + "L2 cache:": "128 MiB (64 instances)", + "L3 cache:": "120 MiB (2 instances)", + "Stepping:": "7", + "L1d cache:": "3 MiB (64 instances)", + "L1i cache:": "2 MiB (64 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8462Y+", + "CPU max MHz:": "4100.0000", + "CPU min MHz:": "800.0000", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "52 bits physical, 57 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0-31,64-95", + "NUMA node1 CPU(s):": "32-63,96-127", + "Vulnerability Mds:": "Not affected", + "Core(s) per socket:": "32", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Not affected", + "On-line CPU(s) list:": "0,5-64,69-127", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "1-4,65-68", + "Vulnerability Meltdown:": "Not affected", + "Vulnerability Retbleed:": "Not affected", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; Enhanced IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS SW sequence", + "Vulnerability Itlb multihit:": "Not affected", + "Vulnerability Mmio stale data:": "Not affected", + "Vulnerability Tsx async abort:": "Not affected", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": 0, + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0, + "num_wires": 4, + "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", + "witness_compiler": "c++" + }, + { + "circuit_id": "b4dd22c7-ef45-415b-9adb-b55796852c23", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-15T01:52:26.416Z", + "proving_scheme": "groth16", + "status": "Ready", + "compute_time": "P0DT00H00M04.686577S", + "compute_times": { + "total": 4.717802106984891, + "queued": 6.382446, + "clean_up": 0.000551781035028398, + "create_cpp": 0.029999293037690222, + "file_setup": 0.18139734293799847, + "compile_cpp": 2.932805340969935, + "create_r1cs": 0.005408287048339844, + "save_results": 0.015873302007094026, + "get_r1cs_info": 0.00022628996521234512, + "groth16_setup": 0.7609705639770254, + "export_verification_key": 0.7896749229403213, + "download_trusted_setup_file": 0.0007316060364246368 + }, + "file_sizes": { + "total": 225418, + "circuit": 213240, + "total_gb": 0.000225418, + "total_mb": 0.225418, + "circuit.dat": 6176, + "code.tar.gz": 497, + "circuit.zkey": 2580, + "verification_key": 2925 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf tsc_known_freq pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cat_l2 cdp_l3 invpcid_single intel_ppin cdp_l2 ssbd mba ibrs ibpb stibp ibrs_enhanced tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 avx2 smep bmi2 erms invpcid cqm rdt_a avx512f avx512dq rdseed adx smap avx512ifma clflushopt clwb intel_pt avx512cd sha_ni avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local split_lock_detect avx_vnni avx512_bf16 wbnoinvd dtherm ida arat pln pts hwp hwp_act_window hwp_epp hwp_pkg_req hfi avx512vbmi umip pku ospke waitpkg avx512_vbmi2 gfni vaes vpclmulqdq avx512_vnni avx512_bitalg tme avx512_vpopcntdq la57 rdpid bus_lock_detect cldemote movdiri movdir64b enqcmd fsrm md_clear serialize tsxldtrk pconfig arch_lbr ibt amx_bf16 avx512_fp16 amx_tile amx_int8 flush_l1d arch_capabilities", + "Model:": "143", + "CPU(s):": "128", + "BogoMIPS:": "5600.00", + "L2 cache:": "128 MiB (64 instances)", + "L3 cache:": "120 MiB (2 instances)", + "Stepping:": "7", + "L1d cache:": "3 MiB (64 instances)", + "L1i cache:": "2 MiB (64 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8462Y+", + "CPU max MHz:": "4100.0000", + "CPU min MHz:": "800.0000", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "52 bits physical, 57 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0-31,64-95", + "NUMA node1 CPU(s):": "32-63,96-127", + "Vulnerability Mds:": "Not affected", + "Core(s) per socket:": "32", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Not affected", + "On-line CPU(s) list:": "0,5-64,69-127", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "1-4,65-68", + "Vulnerability Meltdown:": "Not affected", + "Vulnerability Retbleed:": "Not affected", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; Enhanced IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS SW sequence", + "Vulnerability Itlb multihit:": "Not affected", + "Vulnerability Mmio stale data:": "Not affected", + "Vulnerability Tsx async abort:": "Not affected", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": 0, + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0, + "num_wires": 4, + "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", + "witness_compiler": "c++" + }, + { + "circuit_id": "62424675-e5a3-472b-b6d9-360469112a6c", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-15T01:52:26.115Z", + "proving_scheme": "groth16", + "status": "Ready", + "compute_time": "P0DT00H00M04.768701S", + "compute_times": { + "total": 4.799833326018415, + "queued": 0.976508, + "clean_up": 0.00047689699567854404, + "create_cpp": 0.030055438983254135, + "file_setup": 0.17185658100061119, + "compile_cpp": 2.9329681789968163, + "create_r1cs": 0.005263481056317687, + "save_results": 0.09661219897679985, + "get_r1cs_info": 0.00022084394004195929, + "groth16_setup": 0.7651074749883264, + "export_verification_key": 0.7962674020091072, + "download_trusted_setup_file": 0.0007937300251796842 + }, + "file_sizes": { + "total": 225450, + "circuit": 213240, + "total_gb": 0.00022545, + "total_mb": 0.22545, + "circuit.dat": 6176, + "code.tar.gz": 529, + "circuit.zkey": 2580, + "verification_key": 2925 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tgz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf tsc_known_freq pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cat_l2 cdp_l3 invpcid_single intel_ppin cdp_l2 ssbd mba ibrs ibpb stibp ibrs_enhanced tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 avx2 smep bmi2 erms invpcid cqm rdt_a avx512f avx512dq rdseed adx smap avx512ifma clflushopt clwb intel_pt avx512cd sha_ni avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local split_lock_detect avx_vnni avx512_bf16 wbnoinvd dtherm ida arat pln pts hwp hwp_act_window hwp_epp hwp_pkg_req hfi avx512vbmi umip pku ospke waitpkg avx512_vbmi2 gfni vaes vpclmulqdq avx512_vnni avx512_bitalg tme avx512_vpopcntdq la57 rdpid bus_lock_detect cldemote movdiri movdir64b enqcmd fsrm md_clear serialize tsxldtrk pconfig arch_lbr ibt amx_bf16 avx512_fp16 amx_tile amx_int8 flush_l1d arch_capabilities", + "Model:": "143", + "CPU(s):": "128", + "BogoMIPS:": "5600.00", + "L2 cache:": "128 MiB (64 instances)", + "L3 cache:": "120 MiB (2 instances)", + "Stepping:": "7", + "L1d cache:": "3 MiB (64 instances)", + "L1i cache:": "2 MiB (64 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8462Y+", + "CPU max MHz:": "4100.0000", + "CPU min MHz:": "800.0000", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "52 bits physical, 57 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0-31,64-95", + "NUMA node1 CPU(s):": "32-63,96-127", + "Vulnerability Mds:": "Not affected", + "Core(s) per socket:": "32", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Not affected", + "On-line CPU(s) list:": "0,5-64,69-127", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "1-4,65-68", + "Vulnerability Meltdown:": "Not affected", + "Vulnerability Retbleed:": "Not affected", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; Enhanced IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS SW sequence", + "Vulnerability Itlb multihit:": "Not affected", + "Vulnerability Mmio stale data:": "Not affected", + "Vulnerability Tsx async abort:": "Not affected", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": 0, + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0, + "num_wires": 4, + "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", + "witness_compiler": "c++" + }, + { + "circuit_id": "16c96d49-925a-4232-8da4-c43026de854e", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-15T01:44:13.892Z", + "proving_scheme": "groth16", + "status": "Ready", + "compute_time": "P0DT00H00M07.885708S", + "compute_times": { + "total": 7.955762881785631, + "queued": 28.847048, + "clean_up": 0.0018043965101242065, + "create_cpp": 0.055242860689759254, + "file_setup": 0.24882620573043823, + "compile_cpp": 4.8809529915452, + "create_r1cs": 0.01775236241519451, + "save_results": 0.006603563204407692, + "get_r1cs_info": 0.000814288854598999, + "groth16_setup": 1.4022877030074596, + "export_verification_key": 1.3382868971675634, + "download_trusted_setup_file": 0.002887807786464691 + }, + "file_sizes": { + "total": 225418, + "circuit": 213240, + "total_gb": 0.000225418, + "total_mb": 0.225418, + "circuit.dat": 6176, + "code.tar.gz": 497, + "circuit.zkey": 2580, + "verification_key": 2925 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", + "Model:": "85", + "CPU(s):": "96", + "BogoMIPS:": "5400.00", + "L2 cache:": "48 MiB (48 instances)", + "L3 cache:": "66 MiB (2 instances)", + "Stepping:": "4", + "L1d cache:": "1.5 MiB (48 instances)", + "L1i cache:": "1.5 MiB (48 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "46 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", + "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", + "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Core(s) per socket:": "24", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", + "On-line CPU(s) list:": "0,1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41-49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89-95", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88", + "Vulnerability Meltdown:": "Mitigation; PTI", + "Vulnerability Retbleed:": "Mitigation; IBRS", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", + "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": 0, + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0, + "num_wires": 4, + "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", + "witness_compiler": "c++" + }, + { + "circuit_id": "01d61417-f3c8-405d-8327-8676c11b920c", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-15T01:44:13.567Z", + "proving_scheme": "groth16", + "status": "Ready", + "compute_time": "P0DT00H00M07.745866S", + "compute_times": { + "total": 7.822312492877245, + "queued": 25.557495, + "clean_up": 0.0016726050525903702, + "create_cpp": 0.054300736635923386, + "file_setup": 0.24556394666433334, + "compile_cpp": 4.760834071785212, + "create_r1cs": 0.011471176519989967, + "save_results": 0.005745843052864075, + "get_r1cs_info": 0.0006968062371015549, + "groth16_setup": 1.4245723970234394, + "export_verification_key": 1.3145959675312042, + "download_trusted_setup_file": 0.0024240929633378983 + }, + "file_sizes": { + "total": 225418, + "circuit": 213240, + "total_gb": 0.000225418, + "total_mb": 0.225418, + "circuit.dat": 6176, + "code.tar.gz": 497, + "circuit.zkey": 2580, + "verification_key": 2925 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", + "Model:": "85", + "CPU(s):": "96", + "BogoMIPS:": "5400.00", + "L2 cache:": "48 MiB (48 instances)", + "L3 cache:": "66 MiB (2 instances)", + "Stepping:": "4", + "L1d cache:": "1.5 MiB (48 instances)", + "L1i cache:": "1.5 MiB (48 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "46 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", + "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", + "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Core(s) per socket:": "24", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", + "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", + "Vulnerability Meltdown:": "Mitigation; PTI", + "Vulnerability Retbleed:": "Mitigation; IBRS", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", + "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": 0, + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0, + "num_wires": 4, + "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", + "witness_compiler": "c++" + }, + { + "circuit_id": "68922dfc-836b-4954-915d-91e6474e1b5d", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-15T01:44:13.542Z", + "proving_scheme": "groth16", + "status": "Ready", + "compute_time": "P0DT00H00M08.127036S", + "compute_times": { + "total": 8.208296919241548, + "queued": 23.853413, + "clean_up": 0.0016598310321569443, + "create_cpp": 0.046626683324575424, + "file_setup": 0.24938496574759483, + "compile_cpp": 5.05383531935513, + "create_r1cs": 0.050674159079790115, + "save_results": 0.005311015993356705, + "get_r1cs_info": 0.000824756920337677, + "groth16_setup": 1.4834840036928654, + "export_verification_key": 1.3135647680610418, + "download_trusted_setup_file": 0.0025572720915079117 + }, + "file_sizes": { + "total": 225418, + "circuit": 213240, + "total_gb": 0.000225418, + "total_mb": 0.225418, + "circuit.dat": 6176, + "code.tar.gz": 497, + "circuit.zkey": 2580, + "verification_key": 2925 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", + "Model:": "85", + "CPU(s):": "96", + "BogoMIPS:": "5400.00", + "L2 cache:": "48 MiB (48 instances)", + "L3 cache:": "66 MiB (2 instances)", + "Stepping:": "4", + "L1d cache:": "1.5 MiB (48 instances)", + "L1i cache:": "1.5 MiB (48 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "46 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", + "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", + "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Core(s) per socket:": "24", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", + "On-line CPU(s) list:": "0,1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41-49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89-95", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88", + "Vulnerability Meltdown:": "Mitigation; PTI", + "Vulnerability Retbleed:": "Mitigation; IBRS", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", + "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": 0, + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0, + "num_wires": 4, + "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", + "witness_compiler": "c++" + }, + { + "circuit_id": "03dcdd85-9300-440b-8353-91bea904d8c5", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-15T01:44:12.640Z", + "proving_scheme": "groth16", + "status": "Ready", + "compute_time": "P0DT00H00M07.854047S", + "compute_times": { + "total": 7.929084803909063, + "queued": 23.597366, + "clean_up": 0.0012285895645618439, + "create_cpp": 0.04848377965390682, + "file_setup": 0.24958525598049164, + "compile_cpp": 4.769202491268516, + "create_r1cs": 0.016365252435207367, + "save_results": 0.005111081525683403, + "get_r1cs_info": 0.0006984081119298935, + "groth16_setup": 1.324900783598423, + "export_verification_key": 1.5104059372097254, + "download_trusted_setup_file": 0.0024766679853200912 + }, + "file_sizes": { + "total": 225450, + "circuit": 213240, + "total_gb": 0.00022545, + "total_mb": 0.22545, + "circuit.dat": 6176, + "code.tar.gz": 529, + "circuit.zkey": 2580, + "verification_key": 2925 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tgz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", + "Model:": "85", + "CPU(s):": "96", + "BogoMIPS:": "5400.00", + "L2 cache:": "48 MiB (48 instances)", + "L3 cache:": "66 MiB (2 instances)", + "Stepping:": "4", + "L1d cache:": "1.5 MiB (48 instances)", + "L1i cache:": "1.5 MiB (48 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "46 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", + "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", + "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Core(s) per socket:": "24", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", + "On-line CPU(s) list:": "0,1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41-49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89-95", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88", + "Vulnerability Meltdown:": "Mitigation; PTI", + "Vulnerability Retbleed:": "Mitigation; IBRS", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", + "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": 0, + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0, + "num_wires": 4, + "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", + "witness_compiler": "c++" + }, + { + "circuit_id": "53eb66ff-b56b-4cb7-a75a-49924b2fb393", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-15T01:44:12.394Z", + "proving_scheme": "groth16", + "status": "Ready", + "compute_time": "P0DT00H00M07.394188S", + "compute_times": { + "total": 7.469893058761954, + "queued": 21.7528, + "clean_up": 0.0017232540994882584, + "create_cpp": 0.04593514837324619, + "file_setup": 0.2557643633335829, + "compile_cpp": 4.412009971216321, + "create_r1cs": 0.009809941053390503, + "save_results": 0.00808953307569027, + "get_r1cs_info": 0.000814361497759819, + "groth16_setup": 1.357611108571291, + "export_verification_key": 1.3745716717094183, + "download_trusted_setup_file": 0.0029620975255966187 + }, + "file_sizes": { + "total": 225420, + "circuit": 213240, + "total_gb": 0.00022542, + "total_mb": 0.22542, + "circuit.dat": 6176, + "code.tar.gz": 499, + "circuit.zkey": 2580, + "verification_key": 2925 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", + "Model:": "85", + "CPU(s):": "96", + "BogoMIPS:": "5400.00", + "L2 cache:": "48 MiB (48 instances)", + "L3 cache:": "66 MiB (2 instances)", + "Stepping:": "4", + "L1d cache:": "1.5 MiB (48 instances)", + "L1i cache:": "1.5 MiB (48 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "46 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", + "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", + "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Core(s) per socket:": "24", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", + "On-line CPU(s) list:": "0,1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41-49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89-95", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88", + "Vulnerability Meltdown:": "Mitigation; PTI", + "Vulnerability Retbleed:": "Mitigation; IBRS", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", + "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": 0, + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0, + "num_wires": 4, + "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", + "witness_compiler": "c++" + }, + { + "circuit_id": "407bcfed-fe41-4066-9332-aeb40b808d06", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-15T01:44:12.156Z", + "proving_scheme": "groth16", + "status": "Ready", + "compute_time": "P0DT00H00M07.571485S", + "compute_times": { + "total": 7.641632162034512, + "queued": 18.226087, + "clean_up": 0.0013474393635988235, + "create_cpp": 0.05902073346078396, + "file_setup": 0.23511924035847187, + "compile_cpp": 4.656228628009558, + "create_r1cs": 0.018529707565903664, + "save_results": 0.004187965765595436, + "get_r1cs_info": 0.0008369125425815582, + "groth16_setup": 1.2646941412240267, + "export_verification_key": 1.3983517494052649, + "download_trusted_setup_file": 0.002851281315088272 + }, + "file_sizes": { + "total": 225418, + "circuit": 213240, + "total_gb": 0.000225418, + "total_mb": 0.225418, + "circuit.dat": 6176, + "code.tar.gz": 497, + "circuit.zkey": 2580, + "verification_key": 2925 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", + "Model:": "85", + "CPU(s):": "96", + "BogoMIPS:": "5400.00", + "L2 cache:": "48 MiB (48 instances)", + "L3 cache:": "66 MiB (2 instances)", + "Stepping:": "4", + "L1d cache:": "1.5 MiB (48 instances)", + "L1i cache:": "1.5 MiB (48 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "46 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", + "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", + "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Core(s) per socket:": "24", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", + "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", + "Vulnerability Meltdown:": "Mitigation; PTI", + "Vulnerability Retbleed:": "Mitigation; IBRS", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", + "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": 0, + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0, + "num_wires": 4, + "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", + "witness_compiler": "c++" + }, + { + "circuit_id": "a7c1a9a9-2df3-4f76-9be0-1bb8456c22db", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-15T01:44:11.755Z", + "proving_scheme": "groth16", + "status": "Ready", + "compute_time": "P0DT00H00M07.694656S", + "compute_times": { + "total": 7.773913914337754, + "queued": 9.755186, + "clean_up": 0.0017512477934360504, + "create_cpp": 0.05254339054226875, + "file_setup": 0.25238266587257385, + "compile_cpp": 4.748115291818976, + "create_r1cs": 0.017892709001898766, + "save_results": 0.005697643384337425, + "get_r1cs_info": 0.0006967000663280487, + "groth16_setup": 1.3444917406886816, + "export_verification_key": 1.3474417924880981, + "download_trusted_setup_file": 0.0025170259177684784 + }, + "file_sizes": { + "total": 225450, + "circuit": 213240, + "total_gb": 0.00022545, + "total_mb": 0.22545, + "circuit.dat": 6176, + "code.tar.gz": 529, + "circuit.zkey": 2580, + "verification_key": 2925 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tgz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", + "Model:": "85", + "CPU(s):": "96", + "BogoMIPS:": "5400.00", + "L2 cache:": "48 MiB (48 instances)", + "L3 cache:": "66 MiB (2 instances)", + "Stepping:": "4", + "L1d cache:": "1.5 MiB (48 instances)", + "L1i cache:": "1.5 MiB (48 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "46 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", + "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", + "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Core(s) per socket:": "24", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", + "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", + "Vulnerability Meltdown:": "Mitigation; PTI", + "Vulnerability Retbleed:": "Mitigation; IBRS", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", + "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": 0, + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0, + "num_wires": 4, + "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", + "witness_compiler": "c++" + }, + { + "circuit_id": "7b7b7b2a-451c-4d73-ab46-f0e66c2c85ca", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-15T01:44:11.486Z", + "proving_scheme": "groth16", + "status": "Ready", + "compute_time": "P0DT00H00M07.630543S", + "compute_times": { + "total": 7.710038185119629, + "queued": 1.150464, + "clean_up": 0.0011645127087831497, + "create_cpp": 0.058946333825588226, + "file_setup": 0.25080287642776966, + "compile_cpp": 4.800692165270448, + "create_r1cs": 0.01764843240380287, + "save_results": 0.004682136699557304, + "get_r1cs_info": 0.0006801802664995193, + "groth16_setup": 1.2236122898757458, + "export_verification_key": 1.3488865680992603, + "download_trusted_setup_file": 0.002442905679345131 + }, + "file_sizes": { + "total": 225450, + "circuit": 213240, + "total_gb": 0.00022545, + "total_mb": 0.22545, + "circuit.dat": 6176, + "code.tar.gz": 529, + "circuit.zkey": 2580, + "verification_key": 2925 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tgz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", + "Model:": "85", + "CPU(s):": "96", + "BogoMIPS:": "5400.00", + "L2 cache:": "48 MiB (48 instances)", + "L3 cache:": "66 MiB (2 instances)", + "Stepping:": "4", + "L1d cache:": "1.5 MiB (48 instances)", + "L1i cache:": "1.5 MiB (48 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "46 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", + "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", + "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Core(s) per socket:": "24", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", + "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", + "Vulnerability Meltdown:": "Mitigation; PTI", + "Vulnerability Retbleed:": "Mitigation; IBRS", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", + "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": 0, + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0, + "num_wires": 4, + "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", + "witness_compiler": "c++" + }, + { + "circuit_id": "02c640e5-cfcb-41ae-af49-b931f9a8c09c", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-15T01:28:24.401Z", + "proving_scheme": "groth16", + "status": "Ready", + "compute_time": "P0DT00H00M08.241318S", + "compute_times": { + "total": 8.329373510554433, + "queued": 1.121606, + "clean_up": 0.0019346550107002258, + "create_cpp": 0.05594826489686966, + "file_setup": 0.27456157468259335, + "compile_cpp": 4.8171467911452055, + "create_r1cs": 0.026553984731435776, + "save_results": 0.006161559373140335, + "get_r1cs_info": 0.0005842037498950958, + "groth16_setup": 1.7246721610426903, + "export_verification_key": 1.4198596961796284, + "download_trusted_setup_file": 0.001470223069190979 + }, + "file_sizes": { + "total": 225418, + "circuit": 213240, + "total_gb": 0.000225418, + "total_mb": 0.225418, + "circuit.dat": 6176, + "code.tar.gz": 497, + "circuit.zkey": 2580, + "verification_key": 2925 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", + "Model:": "85", + "CPU(s):": "96", + "BogoMIPS:": "5400.00", + "L2 cache:": "48 MiB (48 instances)", + "L3 cache:": "66 MiB (2 instances)", + "Stepping:": "4", + "L1d cache:": "1.5 MiB (48 instances)", + "L1i cache:": "1.5 MiB (48 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "46 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", + "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", + "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Core(s) per socket:": "24", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", + "On-line CPU(s) list:": "0,1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41-49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89-95", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88", + "Vulnerability Meltdown:": "Mitigation; PTI", + "Vulnerability Retbleed:": "Mitigation; IBRS", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", + "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": 0, + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0, + "num_wires": 4, + "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", + "witness_compiler": "c++" + }, + { + "circuit_id": "723f695f-ceca-435e-9423-fa9623b26962", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-15T01:28:24.332Z", + "proving_scheme": "groth16", + "status": "Ready", + "compute_time": "P0DT00H00M08.354681S", + "compute_times": { + "total": 8.443675557151437, + "queued": 1.117419, + "clean_up": 0.0017919130623340607, + "create_cpp": 0.04705219343304634, + "file_setup": 0.2759277820587158, + "compile_cpp": 4.905571544542909, + "create_r1cs": 0.009557157754898071, + "save_results": 0.006301635876297951, + "get_r1cs_info": 0.00048459507524967194, + "groth16_setup": 1.7585814129561186, + "export_verification_key": 1.4364026803523302, + "download_trusted_setup_file": 0.0015424657613039017 + }, + "file_sizes": { + "total": 225418, + "circuit": 213240, + "total_gb": 0.000225418, + "total_mb": 0.225418, + "circuit.dat": 6176, + "code.tar.gz": 497, + "circuit.zkey": 2580, + "verification_key": 2925 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", + "Model:": "85", + "CPU(s):": "96", + "BogoMIPS:": "5400.00", + "L2 cache:": "48 MiB (48 instances)", + "L3 cache:": "66 MiB (2 instances)", + "Stepping:": "4", + "L1d cache:": "1.5 MiB (48 instances)", + "L1i cache:": "1.5 MiB (48 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "46 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", + "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", + "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Core(s) per socket:": "24", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", + "On-line CPU(s) list:": "0,1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41-49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89-95", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88", + "Vulnerability Meltdown:": "Mitigation; PTI", + "Vulnerability Retbleed:": "Mitigation; IBRS", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", + "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": 0, + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0, + "num_wires": 4, + "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", + "witness_compiler": "c++" + }, + { + "circuit_id": "1f4e0b8e-d4a1-40fa-b32b-a8d263ca516f", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-15T01:28:23.531Z", + "proving_scheme": "groth16", + "status": "Ready", + "compute_time": "P0DT00H00M08.068099S", + "compute_times": { + "total": 8.153660595417023, + "queued": 1.071738, + "clean_up": 0.001531621441245079, + "create_cpp": 0.045755207538604736, + "file_setup": 0.2599444091320038, + "compile_cpp": 4.871264658868313, + "create_r1cs": 0.017335444688796997, + "save_results": 0.005486989393830299, + "get_r1cs_info": 0.0006858445703983307, + "groth16_setup": 1.361423509195447, + "export_verification_key": 1.5872800443321466, + "download_trusted_setup_file": 0.0024511031806468964 + }, + "file_sizes": { + "total": 225450, + "circuit": 213240, + "total_gb": 0.00022545, + "total_mb": 0.22545, + "circuit.dat": 6176, + "code.tar.gz": 529, + "circuit.zkey": 2580, + "verification_key": 2925 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tgz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", + "Model:": "85", + "CPU(s):": "96", + "BogoMIPS:": "5400.00", + "L2 cache:": "48 MiB (48 instances)", + "L3 cache:": "66 MiB (2 instances)", + "Stepping:": "4", + "L1d cache:": "1.5 MiB (48 instances)", + "L1i cache:": "1.5 MiB (48 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "46 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", + "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", + "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Core(s) per socket:": "24", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", + "On-line CPU(s) list:": "0,1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41-49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89-95", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88", + "Vulnerability Meltdown:": "Mitigation; PTI", + "Vulnerability Retbleed:": "Mitigation; IBRS", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", + "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": 0, + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0, + "num_wires": 4, + "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", + "witness_compiler": "c++" + }, + { + "circuit_id": "7347f61d-b7cb-4343-a5bf-ebce2cc55f8a", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-15T01:28:23.438Z", + "proving_scheme": "groth16", + "status": "Ready", + "compute_time": "P0DT00H00M08.140640S", + "compute_times": { + "total": 8.235822454094887, + "queued": 1.081126, + "clean_up": 0.0017961226403713226, + "create_cpp": 0.04311295971274376, + "file_setup": 0.27040280401706696, + "compile_cpp": 4.741711314767599, + "create_r1cs": 0.008934037759900093, + "save_results": 0.0059998612850904465, + "get_r1cs_info": 0.0005991235375404358, + "groth16_setup": 1.4837695751339197, + "export_verification_key": 1.6770079042762518, + "download_trusted_setup_file": 0.0020057205110788345 + }, + "file_sizes": { + "total": 225420, + "circuit": 213240, + "total_gb": 0.00022542, + "total_mb": 0.22542, + "circuit.dat": 6176, + "code.tar.gz": 499, + "circuit.zkey": 2580, + "verification_key": 2925 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", + "Model:": "85", + "CPU(s):": "96", + "BogoMIPS:": "5400.00", + "L2 cache:": "48 MiB (48 instances)", + "L3 cache:": "66 MiB (2 instances)", + "Stepping:": "4", + "L1d cache:": "1.5 MiB (48 instances)", + "L1i cache:": "1.5 MiB (48 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "46 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", + "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", + "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Core(s) per socket:": "24", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", + "On-line CPU(s) list:": "0,1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41-49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89-95", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88", + "Vulnerability Meltdown:": "Mitigation; PTI", + "Vulnerability Retbleed:": "Mitigation; IBRS", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", + "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": 0, + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0, + "num_wires": 4, + "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", + "witness_compiler": "c++" + }, + { + "circuit_id": "60568e01-5db1-4bcc-8b5d-9a5d0c597cfc", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-15T01:28:22.740Z", + "proving_scheme": "groth16", + "status": "Ready", + "compute_time": "P0DT00H00M07.678150S", + "compute_times": { + "total": 7.751736994832754, + "queued": 1.13689, + "clean_up": 0.0017000120133161545, + "create_cpp": 0.04771371744573116, + "file_setup": 0.25899965688586235, + "compile_cpp": 4.8372255228459835, + "create_r1cs": 0.017538156360387802, + "save_results": 0.00590207614004612, + "get_r1cs_info": 0.0006850995123386383, + "groth16_setup": 1.2987089455127716, + "export_verification_key": 1.2803236413747072, + "download_trusted_setup_file": 0.0023799482733011246 + }, + "file_sizes": { + "total": 225418, + "circuit": 213240, + "total_gb": 0.000225418, + "total_mb": 0.225418, + "circuit.dat": 6176, + "code.tar.gz": 497, + "circuit.zkey": 2580, + "verification_key": 2925 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", + "Model:": "85", + "CPU(s):": "96", + "BogoMIPS:": "5400.00", + "L2 cache:": "48 MiB (48 instances)", + "L3 cache:": "66 MiB (2 instances)", + "Stepping:": "4", + "L1d cache:": "1.5 MiB (48 instances)", + "L1i cache:": "1.5 MiB (48 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "46 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", + "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", + "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Core(s) per socket:": "24", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", + "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", + "Vulnerability Meltdown:": "Mitigation; PTI", + "Vulnerability Retbleed:": "Mitigation; IBRS", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", + "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": 0, + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0, + "num_wires": 4, + "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", + "witness_compiler": "c++" + }, + { + "circuit_id": "631a6175-1cf5-4d85-9dba-beb0b7f39ac4", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-15T01:28:22.659Z", + "proving_scheme": "groth16", + "status": "Ready", + "compute_time": "P0DT00H00M08.029136S", + "compute_times": { + "total": 8.106146903708577, + "queued": 1.175805, + "clean_up": 0.0012847986072301865, + "create_cpp": 0.046614110469818115, + "file_setup": 0.25902401097118855, + "compile_cpp": 4.752150634303689, + "create_r1cs": 0.009271597489714622, + "save_results": 0.0047521647065877914, + "get_r1cs_info": 0.0004211030900478363, + "groth16_setup": 1.3230060525238514, + "export_verification_key": 1.7080091033130884, + "download_trusted_setup_file": 0.0011603403836488724 + }, + "file_sizes": { + "total": 225450, + "circuit": 213240, + "total_gb": 0.00022545, + "total_mb": 0.22545, + "circuit.dat": 6176, + "code.tar.gz": 529, + "circuit.zkey": 2580, + "verification_key": 2925 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tgz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", + "Model:": "85", + "CPU(s):": "96", + "BogoMIPS:": "5400.00", + "L2 cache:": "48 MiB (48 instances)", + "L3 cache:": "66 MiB (2 instances)", + "Stepping:": "4", + "L1d cache:": "1.5 MiB (48 instances)", + "L1i cache:": "1.5 MiB (48 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "46 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", + "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", + "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Core(s) per socket:": "24", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", + "On-line CPU(s) list:": "0,1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41-49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89-95", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88", + "Vulnerability Meltdown:": "Mitigation; PTI", + "Vulnerability Retbleed:": "Mitigation; IBRS", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", + "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": 0, + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0, + "num_wires": 4, + "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", + "witness_compiler": "c++" + }, + { + "circuit_id": "fc9f5f13-b3fb-4921-9e72-79d9e66e179b", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-15T01:25:43.592Z", + "proving_scheme": "groth16", + "status": "Ready", + "compute_time": "P0DT00H00M08.307121S", + "compute_times": { + "total": 8.39285988919437, + "queued": 1.170429, + "clean_up": 0.0017455965280532837, + "create_cpp": 0.05315246060490608, + "file_setup": 0.25207769870758057, + "compile_cpp": 4.999113095924258, + "create_r1cs": 0.011692922562360764, + "save_results": 0.005579909309744835, + "get_r1cs_info": 0.0005984082818031311, + "groth16_setup": 1.5826541632413864, + "export_verification_key": 1.484537510201335, + "download_trusted_setup_file": 0.0012438185513019562 + }, + "file_sizes": { + "total": 225418, + "circuit": 213240, + "total_gb": 0.000225418, + "total_mb": 0.225418, + "circuit.dat": 6176, + "code.tar.gz": 497, + "circuit.zkey": 2580, + "verification_key": 2925 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", + "Model:": "85", + "CPU(s):": "96", + "BogoMIPS:": "5400.00", + "L2 cache:": "48 MiB (48 instances)", + "L3 cache:": "66 MiB (2 instances)", + "Stepping:": "4", + "L1d cache:": "1.5 MiB (48 instances)", + "L1i cache:": "1.5 MiB (48 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "46 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", + "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", + "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Core(s) per socket:": "24", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", + "On-line CPU(s) list:": "0,1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41-49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89-95", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88", + "Vulnerability Meltdown:": "Mitigation; PTI", + "Vulnerability Retbleed:": "Mitigation; IBRS", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", + "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": 0, + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0, + "num_wires": 4, + "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", + "witness_compiler": "c++" + }, + { + "circuit_id": "e4031874-dd5e-44fe-9c00-d1fd6fb202c6", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-15T01:25:43.503Z", + "proving_scheme": "groth16", + "status": "Ready", + "compute_time": "P0DT00H00M08.235985S", + "compute_times": { + "total": 8.321344017982483, + "queued": 1.068236, + "clean_up": 0.0016151797026395798, + "create_cpp": 0.05340844392776489, + "file_setup": 0.26708511635661125, + "compile_cpp": 4.841666031628847, + "create_r1cs": 0.012876151129603386, + "save_results": 0.005826536566019058, + "get_r1cs_info": 0.0005277041345834732, + "groth16_setup": 1.6289604622870684, + "export_verification_key": 1.5077580194920301, + "download_trusted_setup_file": 0.0011740028858184814 + }, + "file_sizes": { + "total": 225418, + "circuit": 213240, + "total_gb": 0.000225418, + "total_mb": 0.225418, + "circuit.dat": 6176, + "code.tar.gz": 497, + "circuit.zkey": 2580, + "verification_key": 2925 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", + "Model:": "85", + "CPU(s):": "96", + "BogoMIPS:": "5400.00", + "L2 cache:": "48 MiB (48 instances)", + "L3 cache:": "66 MiB (2 instances)", + "Stepping:": "4", + "L1d cache:": "1.5 MiB (48 instances)", + "L1i cache:": "1.5 MiB (48 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "46 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", + "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", + "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Core(s) per socket:": "24", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", + "On-line CPU(s) list:": "0,1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41-49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89-95", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88", + "Vulnerability Meltdown:": "Mitigation; PTI", + "Vulnerability Retbleed:": "Mitigation; IBRS", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", + "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": 0, + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0, + "num_wires": 4, + "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", + "witness_compiler": "c++" + }, + { + "circuit_id": "36ed7747-01de-4272-bd8e-e28802d5c668", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-15T01:25:42.642Z", + "proving_scheme": "groth16", + "status": "Ready", + "compute_time": "P0DT00H00M08.289158S", + "compute_times": { + "total": 8.37978408485651, + "queued": 1.052437, + "clean_up": 0.0008304361253976822, + "create_cpp": 0.04860556498169899, + "file_setup": 0.25936984457075596, + "compile_cpp": 5.029499880969524, + "create_r1cs": 0.01772325113415718, + "save_results": 0.0037908367812633514, + "get_r1cs_info": 0.0006020087748765945, + "groth16_setup": 1.5292650777846575, + "export_verification_key": 1.488473566249013, + "download_trusted_setup_file": 0.001187194138765335 + }, + "file_sizes": { + "total": 225450, + "circuit": 213240, + "total_gb": 0.00022545, + "total_mb": 0.22545, + "circuit.dat": 6176, + "code.tar.gz": 529, + "circuit.zkey": 2580, + "verification_key": 2925 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tgz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", + "Model:": "85", + "CPU(s):": "96", + "BogoMIPS:": "5400.00", + "L2 cache:": "48 MiB (48 instances)", + "L3 cache:": "66 MiB (2 instances)", + "Stepping:": "4", + "L1d cache:": "1.5 MiB (48 instances)", + "L1i cache:": "1.5 MiB (48 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "46 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", + "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", + "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Core(s) per socket:": "24", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", + "On-line CPU(s) list:": "0,1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41-49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89-95", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88", + "Vulnerability Meltdown:": "Mitigation; PTI", + "Vulnerability Retbleed:": "Mitigation; IBRS", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", + "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": 0, + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0, + "num_wires": 4, + "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", + "witness_compiler": "c++" + }, + { + "circuit_id": "25366e22-1f30-4f2b-9c24-b18e1f015e63", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-15T01:25:42.295Z", + "proving_scheme": "groth16", + "status": "Ready", + "compute_time": "P0DT00H00M08.117529S", + "compute_times": { + "total": 8.207875268533826, + "queued": 1.087153, + "clean_up": 0.0015377029776573181, + "create_cpp": 0.04848550260066986, + "file_setup": 0.284574668854475, + "compile_cpp": 4.720001315698028, + "create_r1cs": 0.019293557852506638, + "save_results": 0.005876583978533745, + "get_r1cs_info": 0.0006543230265378952, + "groth16_setup": 1.3807134442031384, + "export_verification_key": 1.7450519409030676, + "download_trusted_setup_file": 0.0012251269072294235 + }, + "file_sizes": { + "total": 225450, + "circuit": 213240, + "total_gb": 0.00022545, + "total_mb": 0.22545, + "circuit.dat": 6176, + "code.tar.gz": 529, + "circuit.zkey": 2580, + "verification_key": 2925 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tgz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", + "Model:": "85", + "CPU(s):": "96", + "BogoMIPS:": "5400.00", + "L2 cache:": "48 MiB (48 instances)", + "L3 cache:": "66 MiB (2 instances)", + "Stepping:": "4", + "L1d cache:": "1.5 MiB (48 instances)", + "L1i cache:": "1.5 MiB (48 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "46 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", + "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", + "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Core(s) per socket:": "24", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", + "On-line CPU(s) list:": "0,1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41-49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89-95", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88", + "Vulnerability Meltdown:": "Mitigation; PTI", + "Vulnerability Retbleed:": "Mitigation; IBRS", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", + "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": 0, + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0, + "num_wires": 4, + "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", + "witness_compiler": "c++" + }, + { + "circuit_id": "d5b7ab09-4ca6-4521-a7db-c4d157012d70", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-15T01:25:42.146Z", + "proving_scheme": "groth16", + "status": "Ready", + "compute_time": "P0DT00H00M07.534592S", + "compute_times": { + "total": 7.610471937805414, + "queued": 1.093385, + "clean_up": 0.0015752967447042465, + "create_cpp": 0.05304797925055027, + "file_setup": 0.26768016442656517, + "compile_cpp": 4.674749160185456, + "create_r1cs": 0.011171292513608932, + "save_results": 0.005162520334124565, + "get_r1cs_info": 0.0006882045418024063, + "groth16_setup": 1.2686850260943174, + "export_verification_key": 1.324827728793025, + "download_trusted_setup_file": 0.002427944913506508 + }, + "file_sizes": { + "total": 225420, + "circuit": 213240, + "total_gb": 0.00022542, + "total_mb": 0.22542, + "circuit.dat": 6176, + "code.tar.gz": 499, + "circuit.zkey": 2580, + "verification_key": 2925 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", + "Model:": "85", + "CPU(s):": "96", + "BogoMIPS:": "5400.00", + "L2 cache:": "48 MiB (48 instances)", + "L3 cache:": "66 MiB (2 instances)", + "Stepping:": "4", + "L1d cache:": "1.5 MiB (48 instances)", + "L1i cache:": "1.5 MiB (48 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "46 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", + "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", + "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Core(s) per socket:": "24", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", + "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", + "Vulnerability Meltdown:": "Mitigation; PTI", + "Vulnerability Retbleed:": "Mitigation; IBRS", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", + "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": 0, + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0, + "num_wires": 4, + "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", + "witness_compiler": "c++" + }, + { + "circuit_id": "259650fb-5b58-4325-a93c-aae8b050e8de", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-15T01:25:41.758Z", + "proving_scheme": "groth16", + "status": "Ready", + "compute_time": "P0DT00H00M07.763101S", + "compute_times": { + "total": 7.8425999116152525, + "queued": 1.180645, + "clean_up": 0.0010943040251731873, + "create_cpp": 0.04768798500299454, + "file_setup": 0.27950611896812916, + "compile_cpp": 4.640486840158701, + "create_r1cs": 0.017582029104232788, + "save_results": 0.005249707028269768, + "get_r1cs_info": 0.0008139610290527344, + "groth16_setup": 1.330995000898838, + "export_verification_key": 1.5162372961640358, + "download_trusted_setup_file": 0.0024677496403455734 + }, + "file_sizes": { + "total": 225418, + "circuit": 213240, + "total_gb": 0.000225418, + "total_mb": 0.225418, + "circuit.dat": 6176, + "code.tar.gz": 497, + "circuit.zkey": 2580, + "verification_key": 2925 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", + "Model:": "85", + "CPU(s):": "96", + "BogoMIPS:": "5400.00", + "L2 cache:": "48 MiB (48 instances)", + "L3 cache:": "66 MiB (2 instances)", + "Stepping:": "4", + "L1d cache:": "1.5 MiB (48 instances)", + "L1i cache:": "1.5 MiB (48 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "46 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", + "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", + "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Core(s) per socket:": "24", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", + "On-line CPU(s) list:": "0,1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41-49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89-95", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88", + "Vulnerability Meltdown:": "Mitigation; PTI", + "Vulnerability Retbleed:": "Mitigation; IBRS", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", + "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": 0, + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0, + "num_wires": 4, + "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", + "witness_compiler": "c++" + }, + { + "circuit_id": "fdd63193-c8f9-44d3-808f-1c141d8943a9", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-15T01:24:08.312Z", + "proving_scheme": "groth16", + "status": "Ready", + "compute_time": "P0DT00H00M07.531226S", + "compute_times": { + "total": 7.6369316056370735, + "queued": 8.365347, + "clean_up": 0.0019285567104816437, + "create_cpp": 0.046893924474716187, + "file_setup": 0.27671243622899055, + "compile_cpp": 4.530390504747629, + "create_r1cs": 0.0143166184425354, + "save_results": 0.0062755923718214035, + "get_r1cs_info": 0.0004708431661128998, + "groth16_setup": 1.3666829708963633, + "export_verification_key": 1.3914693985134363, + "download_trusted_setup_file": 0.0013060756027698517 + }, + "file_sizes": { + "total": 225418, + "circuit": 213240, + "total_gb": 0.000225418, + "total_mb": 0.225418, + "circuit.dat": 6176, + "code.tar.gz": 497, + "circuit.zkey": 2580, + "verification_key": 2925 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", + "Model:": "85", + "CPU(s):": "96", + "BogoMIPS:": "5400.00", + "L2 cache:": "48 MiB (48 instances)", + "L3 cache:": "66 MiB (2 instances)", + "Stepping:": "4", + "L1d cache:": "1.5 MiB (48 instances)", + "L1i cache:": "1.5 MiB (48 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "46 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", + "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", + "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Core(s) per socket:": "24", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", + "On-line CPU(s) list:": "0,1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41-49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89-95", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88", + "Vulnerability Meltdown:": "Mitigation; PTI", + "Vulnerability Retbleed:": "Mitigation; IBRS", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", + "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": 0, + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0, + "num_wires": 4, + "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", + "witness_compiler": "c++" + }, + { + "circuit_id": "904ee935-e47f-4e51-b8af-4fa75cc308f7", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-15T01:24:07.917Z", + "proving_scheme": "groth16", + "status": "Ready", + "compute_time": "P0DT00H00M08.578702S", + "compute_times": { + "total": 8.665514579042792, + "queued": 1.330868, + "clean_up": 0.0017162077128887177, + "create_cpp": 0.054726479575037956, + "file_setup": 0.2634403742849827, + "compile_cpp": 5.288504149764776, + "create_r1cs": 0.008948137983679771, + "save_results": 0.005719773471355438, + "get_r1cs_info": 0.0004977621138095856, + "groth16_setup": 1.6173019856214523, + "export_verification_key": 1.4229414779692888, + "download_trusted_setup_file": 0.0012561678886413574 + }, + "file_sizes": { + "total": 225418, + "circuit": 213240, + "total_gb": 0.000225418, + "total_mb": 0.225418, + "circuit.dat": 6176, + "code.tar.gz": 497, + "circuit.zkey": 2580, + "verification_key": 2925 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", + "Model:": "85", + "CPU(s):": "96", + "BogoMIPS:": "5400.00", + "L2 cache:": "48 MiB (48 instances)", + "L3 cache:": "66 MiB (2 instances)", + "Stepping:": "4", + "L1d cache:": "1.5 MiB (48 instances)", + "L1i cache:": "1.5 MiB (48 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "46 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", + "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", + "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Core(s) per socket:": "24", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", + "On-line CPU(s) list:": "0,1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41-49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89-95", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88", + "Vulnerability Meltdown:": "Mitigation; PTI", + "Vulnerability Retbleed:": "Mitigation; IBRS", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", + "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": 0, + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0, + "num_wires": 4, + "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", + "witness_compiler": "c++" + }, + { + "circuit_id": "eb7be2ed-0d7e-4036-a5dc-3b36b0d9907c", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-15T01:24:07.224Z", + "proving_scheme": "groth16", + "status": "Ready", + "compute_time": "P0DT00H00M08.530179S", + "compute_times": { + "total": 8.615118628367782, + "queued": 1.275027, + "clean_up": 0.0011486634612083435, + "create_cpp": 0.05415670946240425, + "file_setup": 0.26388018019497395, + "compile_cpp": 4.947564886882901, + "create_r1cs": 0.011440899223089218, + "save_results": 0.0037490390241146088, + "get_r1cs_info": 0.0004730690270662308, + "groth16_setup": 1.862619386985898, + "export_verification_key": 1.4681414254009724, + "download_trusted_setup_file": 0.0015218798071146011 + }, + "file_sizes": { + "total": 225450, + "circuit": 213240, + "total_gb": 0.00022545, + "total_mb": 0.22545, + "circuit.dat": 6176, + "code.tar.gz": 529, + "circuit.zkey": 2580, + "verification_key": 2925 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tgz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", + "Model:": "85", + "CPU(s):": "96", + "BogoMIPS:": "5400.00", + "L2 cache:": "48 MiB (48 instances)", + "L3 cache:": "66 MiB (2 instances)", + "Stepping:": "4", + "L1d cache:": "1.5 MiB (48 instances)", + "L1i cache:": "1.5 MiB (48 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "46 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", + "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", + "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Core(s) per socket:": "24", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", + "On-line CPU(s) list:": "0,1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41-49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89-95", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88", + "Vulnerability Meltdown:": "Mitigation; PTI", + "Vulnerability Retbleed:": "Mitigation; IBRS", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", + "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": 0, + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0, + "num_wires": 4, + "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", + "witness_compiler": "c++" + }, + { + "circuit_id": "a379c18b-369a-44db-aad6-85af9e6bb9cb", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-15T01:24:06.762Z", + "proving_scheme": "groth16", + "status": "Ready", + "compute_time": "P0DT00H00M07.830370S", + "compute_times": { + "total": 7.921309085562825, + "queued": 1.088554, + "clean_up": 0.0007459353655576706, + "create_cpp": 0.047761064022779465, + "file_setup": 0.2782799396663904, + "compile_cpp": 4.597128139808774, + "create_r1cs": 0.011429710313677788, + "save_results": 0.0036425814032554626, + "get_r1cs_info": 0.0006814338266849518, + "groth16_setup": 1.4388698264956474, + "export_verification_key": 1.5397362746298313, + "download_trusted_setup_file": 0.0024739503860473633 + }, + "file_sizes": { + "total": 225418, + "circuit": 213240, + "total_gb": 0.000225418, + "total_mb": 0.225418, + "circuit.dat": 6176, + "code.tar.gz": 497, + "circuit.zkey": 2580, + "verification_key": 2925 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", + "Model:": "85", + "CPU(s):": "96", + "BogoMIPS:": "5400.00", + "L2 cache:": "48 MiB (48 instances)", + "L3 cache:": "66 MiB (2 instances)", + "Stepping:": "4", + "L1d cache:": "1.5 MiB (48 instances)", + "L1i cache:": "1.5 MiB (48 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "46 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", + "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", + "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Core(s) per socket:": "24", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", + "On-line CPU(s) list:": "0,1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41-49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89-95", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88", + "Vulnerability Meltdown:": "Mitigation; PTI", + "Vulnerability Retbleed:": "Mitigation; IBRS", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", + "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": 0, + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0, + "num_wires": 4, + "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", + "witness_compiler": "c++" + }, + { + "circuit_id": "d040cbc0-5324-4999-b9fd-1c1377b68a5c", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-15T01:24:06.594Z", + "proving_scheme": "groth16", + "status": "Ready", + "compute_time": "P0DT00H00M07.915835S", + "compute_times": { + "total": 7.990416899323463, + "queued": 1.043149, + "clean_up": 0.0017143674194812775, + "create_cpp": 0.04796867072582245, + "file_setup": 0.23446950316429138, + "compile_cpp": 4.777510790154338, + "create_r1cs": 0.017401328310370445, + "save_results": 0.0054901354014873505, + "get_r1cs_info": 0.0009919870644807816, + "groth16_setup": 1.4934867825359106, + "export_verification_key": 1.4077130891382694, + "download_trusted_setup_file": 0.00322798453271389 + }, + "file_sizes": { + "total": 225450, + "circuit": 213240, + "total_gb": 0.00022545, + "total_mb": 0.22545, + "circuit.dat": 6176, + "code.tar.gz": 529, + "circuit.zkey": 2580, + "verification_key": 2925 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tgz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", + "Model:": "85", + "CPU(s):": "96", + "BogoMIPS:": "5400.00", + "L2 cache:": "48 MiB (48 instances)", + "L3 cache:": "66 MiB (2 instances)", + "Stepping:": "4", + "L1d cache:": "1.5 MiB (48 instances)", + "L1i cache:": "1.5 MiB (48 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "46 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", + "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", + "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Core(s) per socket:": "24", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", + "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", + "Vulnerability Meltdown:": "Mitigation; PTI", + "Vulnerability Retbleed:": "Mitigation; IBRS", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", + "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": 0, + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0, + "num_wires": 4, + "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", + "witness_compiler": "c++" + }, + { + "circuit_id": "ec4c4efa-85f5-4706-98f5-c074c42fdd6a", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-15T01:24:06.301Z", + "proving_scheme": "groth16", + "status": "Ready", + "compute_time": "P0DT00H00M07.731619S", + "compute_times": { + "total": 7.811778577044606, + "queued": 1.204783, + "clean_up": 0.001674732193350792, + "create_cpp": 0.041051892563700676, + "file_setup": 0.252486540004611, + "compile_cpp": 4.601586431264877, + "create_r1cs": 0.016725540161132812, + "save_results": 0.006723517552018166, + "get_r1cs_info": 0.0007968861609697342, + "groth16_setup": 1.3249811921268702, + "export_verification_key": 1.5628648214042187, + "download_trusted_setup_file": 0.0024388227611780167 + }, + "file_sizes": { + "total": 225420, + "circuit": 213240, + "total_gb": 0.00022542, + "total_mb": 0.22542, + "circuit.dat": 6176, + "code.tar.gz": 499, + "circuit.zkey": 2580, + "verification_key": 2925 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", + "Model:": "85", + "CPU(s):": "96", + "BogoMIPS:": "5400.00", + "L2 cache:": "48 MiB (48 instances)", + "L3 cache:": "66 MiB (2 instances)", + "Stepping:": "4", + "L1d cache:": "1.5 MiB (48 instances)", + "L1i cache:": "1.5 MiB (48 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "46 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", + "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", + "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Core(s) per socket:": "24", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", + "On-line CPU(s) list:": "0,1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41-49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89-95", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88", + "Vulnerability Meltdown:": "Mitigation; PTI", + "Vulnerability Retbleed:": "Mitigation; IBRS", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", + "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": 0, + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0, + "num_wires": 4, + "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", + "witness_compiler": "c++" + }, + { + "circuit_id": "a89d05b7-2a7f-48de-8017-c628dfdfbc8b", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-15T01:20:47.917Z", + "proving_scheme": "groth16", + "status": "Ready", + "compute_time": "P0DT00H00M07.789579S", + "compute_times": { + "total": 7.86683814227581, + "queued": 25.35176, + "clean_up": 0.0017080958932638168, + "create_cpp": 0.049080340191721916, + "file_setup": 0.2709489520639181, + "compile_cpp": 4.813403956592083, + "create_r1cs": 0.01896231807768345, + "save_results": 0.005731154233217239, + "get_r1cs_info": 0.0008451472967863083, + "groth16_setup": 1.3692182656377554, + "export_verification_key": 1.3333069793879986, + "download_trusted_setup_file": 0.0029204636812210083 + }, + "file_sizes": { + "total": 225418, + "circuit": 213240, + "total_gb": 0.000225418, + "total_mb": 0.225418, + "circuit.dat": 6176, + "code.tar.gz": 497, + "circuit.zkey": 2580, + "verification_key": 2925 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", + "Model:": "85", + "CPU(s):": "96", + "BogoMIPS:": "5400.00", + "L2 cache:": "48 MiB (48 instances)", + "L3 cache:": "66 MiB (2 instances)", + "Stepping:": "4", + "L1d cache:": "1.5 MiB (48 instances)", + "L1i cache:": "1.5 MiB (48 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "46 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", + "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", + "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Core(s) per socket:": "24", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", + "On-line CPU(s) list:": "0,1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41-49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89-95", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88", + "Vulnerability Meltdown:": "Mitigation; PTI", + "Vulnerability Retbleed:": "Mitigation; IBRS", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", + "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": 0, + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0, + "num_wires": 4, + "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", + "witness_compiler": "c++" + }, + { + "circuit_id": "fb9804ea-e593-4510-b89a-b98a0011e155", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-15T01:20:47.325Z", + "proving_scheme": "groth16", + "status": "Ready", + "compute_time": "P0DT00H00M07.584035S", + "compute_times": { + "total": 7.674813883379102, + "queued": 23.350262, + "clean_up": 0.00165599025785923, + "create_cpp": 0.05108293518424034, + "file_setup": 0.2647382654249668, + "compile_cpp": 4.588076556101441, + "create_r1cs": 0.01682026870548725, + "save_results": 0.006049007177352905, + "get_r1cs_info": 0.0008010715246200562, + "groth16_setup": 1.3996620196849108, + "export_verification_key": 1.3428493328392506, + "download_trusted_setup_file": 0.002526400610804558 + }, + "file_sizes": { + "total": 225450, + "circuit": 213240, + "total_gb": 0.00022545, + "total_mb": 0.22545, + "circuit.dat": 6176, + "code.tar.gz": 529, + "circuit.zkey": 2580, + "verification_key": 2925 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tgz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", + "Model:": "85", + "CPU(s):": "96", + "BogoMIPS:": "5400.00", + "L2 cache:": "48 MiB (48 instances)", + "L3 cache:": "66 MiB (2 instances)", + "Stepping:": "4", + "L1d cache:": "1.5 MiB (48 instances)", + "L1i cache:": "1.5 MiB (48 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "46 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", + "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", + "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Core(s) per socket:": "24", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", + "On-line CPU(s) list:": "0,1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41-49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89-95", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88", + "Vulnerability Meltdown:": "Mitigation; PTI", + "Vulnerability Retbleed:": "Mitigation; IBRS", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", + "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": 0, + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0, + "num_wires": 4, + "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", + "witness_compiler": "c++" + }, + { + "circuit_id": "11e78b06-44fb-44b4-b85f-d681e677482c", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-15T01:20:46.978Z", + "proving_scheme": "groth16", + "status": "Ready", + "compute_time": "P0DT00H00M07.813443S", + "compute_times": { + "total": 7.886057889088988, + "queued": 17.997581, + "clean_up": 0.0019489061087369919, + "create_cpp": 0.04485638998448849, + "file_setup": 0.23824510909616947, + "compile_cpp": 4.771794518455863, + "create_r1cs": 0.017174607142806053, + "save_results": 0.005540786311030388, + "get_r1cs_info": 0.0006840340793132782, + "groth16_setup": 1.3794465400278568, + "export_verification_key": 1.4234893918037415, + "download_trusted_setup_file": 0.002448735758662224 + }, + "file_sizes": { + "total": 225450, + "circuit": 213240, + "total_gb": 0.00022545, + "total_mb": 0.22545, + "circuit.dat": 6176, + "code.tar.gz": 529, + "circuit.zkey": 2580, + "verification_key": 2925 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tgz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", + "Model:": "85", + "CPU(s):": "96", + "BogoMIPS:": "5400.00", + "L2 cache:": "48 MiB (48 instances)", + "L3 cache:": "66 MiB (2 instances)", + "Stepping:": "4", + "L1d cache:": "1.5 MiB (48 instances)", + "L1i cache:": "1.5 MiB (48 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "46 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", + "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", + "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Core(s) per socket:": "24", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", + "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", + "Vulnerability Meltdown:": "Mitigation; PTI", + "Vulnerability Retbleed:": "Mitigation; IBRS", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", + "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": 0, + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0, + "num_wires": 4, + "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", + "witness_compiler": "c++" + }, + { + "circuit_id": "4e253e9d-53bb-4dc3-a7ae-3f7c845833c9", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-15T01:20:46.598Z", + "proving_scheme": "groth16", + "status": "Ready", + "compute_time": "P0DT00H00M07.749153S", + "compute_times": { + "total": 7.8208857625722885, + "queued": 9.451752, + "clean_up": 0.0019070468842983246, + "create_cpp": 0.04770251177251339, + "file_setup": 0.23707264475524426, + "compile_cpp": 4.817640336230397, + "create_r1cs": 0.018378887325525284, + "save_results": 0.005359206348657608, + "get_r1cs_info": 0.0008528921753168106, + "groth16_setup": 1.3206407614052296, + "export_verification_key": 1.3683953396975994, + "download_trusted_setup_file": 0.002521853893995285 + }, + "file_sizes": { + "total": 225418, + "circuit": 213240, + "total_gb": 0.000225418, + "total_mb": 0.225418, + "circuit.dat": 6176, + "code.tar.gz": 497, + "circuit.zkey": 2580, + "verification_key": 2925 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", + "Model:": "85", + "CPU(s):": "96", + "BogoMIPS:": "5400.00", + "L2 cache:": "48 MiB (48 instances)", + "L3 cache:": "66 MiB (2 instances)", + "Stepping:": "4", + "L1d cache:": "1.5 MiB (48 instances)", + "L1i cache:": "1.5 MiB (48 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "46 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", + "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", + "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Core(s) per socket:": "24", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", + "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", + "Vulnerability Meltdown:": "Mitigation; PTI", + "Vulnerability Retbleed:": "Mitigation; IBRS", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", + "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": 0, + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0, + "num_wires": 4, + "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", + "witness_compiler": "c++" + }, + { + "circuit_id": "50a969b6-0f0e-4066-818e-0d6bee58a675", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-15T01:20:46.380Z", + "proving_scheme": "groth16", + "status": "Ready", + "compute_time": "P0DT00H00M07.412180S", + "compute_times": { + "total": 7.489693740382791, + "queued": 1.076624, + "clean_up": 0.0017442163079977036, + "create_cpp": 0.049648238345980644, + "file_setup": 0.23472837172448635, + "compile_cpp": 4.6169865392148495, + "create_r1cs": 0.01770802214741707, + "save_results": 0.005789747461676598, + "get_r1cs_info": 0.000413551926612854, + "groth16_setup": 1.244078028947115, + "export_verification_key": 1.3168906792998314, + "download_trusted_setup_file": 0.0012542679905891418 + }, + "file_sizes": { + "total": 225420, + "circuit": 213240, + "total_gb": 0.00022542, + "total_mb": 0.22542, + "circuit.dat": 6176, + "code.tar.gz": 499, + "circuit.zkey": 2580, + "verification_key": 2925 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", + "Model:": "85", + "CPU(s):": "96", + "BogoMIPS:": "5400.00", + "L2 cache:": "48 MiB (48 instances)", + "L3 cache:": "66 MiB (2 instances)", + "Stepping:": "4", + "L1d cache:": "1.5 MiB (48 instances)", + "L1i cache:": "1.5 MiB (48 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "46 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", + "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", + "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Core(s) per socket:": "24", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", + "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", + "Vulnerability Meltdown:": "Mitigation; PTI", + "Vulnerability Retbleed:": "Mitigation; IBRS", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", + "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": 0, + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0, + "num_wires": 4, + "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", + "witness_compiler": "c++" + }, + { + "circuit_id": "8b80ca27-37f0-4a48-b203-3e2d185edd90", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-15T01:10:52.340Z", + "proving_scheme": "groth16", + "status": "Ready", + "compute_time": "P0DT00H00M07.883228S", + "compute_times": { + "total": 7.962817557156086, + "queued": 30.893441, + "clean_up": 0.0015963222831487656, + "create_cpp": 0.05661488324403763, + "file_setup": 0.26580186001956463, + "compile_cpp": 4.7885665241628885, + "create_r1cs": 0.017876187339425087, + "save_results": 0.005185702815651894, + "get_r1cs_info": 0.0006853118538856506, + "groth16_setup": 1.458715070039034, + "export_verification_key": 1.3646998051553965, + "download_trusted_setup_file": 0.002479085698723793 + }, + "file_sizes": { + "total": 225418, + "circuit": 213240, + "total_gb": 0.000225418, + "total_mb": 0.225418, + "circuit.dat": 6176, + "code.tar.gz": 497, + "circuit.zkey": 2580, + "verification_key": 2925 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", + "Model:": "85", + "CPU(s):": "96", + "BogoMIPS:": "5400.00", + "L2 cache:": "48 MiB (48 instances)", + "L3 cache:": "66 MiB (2 instances)", + "Stepping:": "4", + "L1d cache:": "1.5 MiB (48 instances)", + "L1i cache:": "1.5 MiB (48 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "46 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", + "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", + "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Core(s) per socket:": "24", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", + "On-line CPU(s) list:": "0,1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41-49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89-95", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88", + "Vulnerability Meltdown:": "Mitigation; PTI", + "Vulnerability Retbleed:": "Mitigation; IBRS", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", + "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": 0, + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0, + "num_wires": 4, + "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", + "witness_compiler": "c++" + }, + { + "circuit_id": "ff738348-86c5-4a5b-bbf5-f59ebacaa83f", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-15T01:10:51.149Z", + "proving_scheme": "groth16", + "status": "Ready", + "compute_time": "P0DT00H00M07.795750S", + "compute_times": { + "total": 7.888047279790044, + "queued": 29.425801, + "clean_up": 0.0008769631385803223, + "create_cpp": 0.05921477451920509, + "file_setup": 0.25372832454741, + "compile_cpp": 4.736947797238827, + "create_r1cs": 0.01815476454794407, + "save_results": 0.004680829122662544, + "get_r1cs_info": 0.0006990842521190643, + "groth16_setup": 1.3821367472410202, + "export_verification_key": 1.4278872478753328, + "download_trusted_setup_file": 0.002650303766131401 + }, + "file_sizes": { + "total": 225420, + "circuit": 213240, + "total_gb": 0.00022542, + "total_mb": 0.22542, + "circuit.dat": 6176, + "code.tar.gz": 499, + "circuit.zkey": 2580, + "verification_key": 2925 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", + "Model:": "85", + "CPU(s):": "96", + "BogoMIPS:": "5400.00", + "L2 cache:": "48 MiB (48 instances)", + "L3 cache:": "66 MiB (2 instances)", + "Stepping:": "4", + "L1d cache:": "1.5 MiB (48 instances)", + "L1i cache:": "1.5 MiB (48 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "46 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", + "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", + "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Core(s) per socket:": "24", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", + "On-line CPU(s) list:": "0,1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41-49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89-95", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88", + "Vulnerability Meltdown:": "Mitigation; PTI", + "Vulnerability Retbleed:": "Mitigation; IBRS", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", + "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": 0, + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0, + "num_wires": 4, + "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", + "witness_compiler": "c++" + }, + { + "circuit_id": "bd06acf7-db8e-4e1b-add1-78e51aa51bbe", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-15T01:10:50.720Z", + "proving_scheme": "groth16", + "status": "Ready", + "compute_time": "P0DT00H00M07.390978S", + "compute_times": { + "total": 7.46995716355741, + "queued": 29.832962, + "clean_up": 0.00176163949072361, + "create_cpp": 0.05480833351612091, + "file_setup": 0.23235405422747135, + "compile_cpp": 4.604168305173516, + "create_r1cs": 0.017065662890672684, + "save_results": 0.005929179489612579, + "get_r1cs_info": 0.0009844768792390823, + "groth16_setup": 1.2335669491440058, + "export_verification_key": 1.3159250803291798, + "download_trusted_setup_file": 0.003006463870406151 + }, + "file_sizes": { + "total": 225418, + "circuit": 213240, + "total_gb": 0.000225418, + "total_mb": 0.225418, + "circuit.dat": 6176, + "code.tar.gz": 497, + "circuit.zkey": 2580, + "verification_key": 2925 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", + "Model:": "85", + "CPU(s):": "96", + "BogoMIPS:": "5400.00", + "L2 cache:": "48 MiB (48 instances)", + "L3 cache:": "66 MiB (2 instances)", + "Stepping:": "4", + "L1d cache:": "1.5 MiB (48 instances)", + "L1i cache:": "1.5 MiB (48 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "46 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", + "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", + "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Core(s) per socket:": "24", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", + "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", + "Vulnerability Meltdown:": "Mitigation; PTI", + "Vulnerability Retbleed:": "Mitigation; IBRS", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", + "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": 0, + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0, + "num_wires": 4, + "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", + "witness_compiler": "c++" + }, + { + "circuit_id": "afcb9e22-9f99-41d0-9901-af4903b766b4", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-15T01:10:50.518Z", + "proving_scheme": "groth16", + "status": "Ready", + "compute_time": "P0DT00H00M07.546432S", + "compute_times": { + "total": 7.620507316663861, + "queued": 21.381816, + "clean_up": 0.0019138902425765991, + "create_cpp": 0.04845607653260231, + "file_setup": 0.22649670392274857, + "compile_cpp": 4.595834456384182, + "create_r1cs": 0.017602143809199333, + "save_results": 0.006120938807725906, + "get_r1cs_info": 0.0006583519279956818, + "groth16_setup": 1.3733069580048323, + "export_verification_key": 1.3470811117440462, + "download_trusted_setup_file": 0.002516990527510643 + }, + "file_sizes": { + "total": 225450, + "circuit": 213240, + "total_gb": 0.00022545, + "total_mb": 0.22545, + "circuit.dat": 6176, + "code.tar.gz": 529, + "circuit.zkey": 2580, + "verification_key": 2925 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tgz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", + "Model:": "85", + "CPU(s):": "96", + "BogoMIPS:": "5400.00", + "L2 cache:": "48 MiB (48 instances)", + "L3 cache:": "66 MiB (2 instances)", + "Stepping:": "4", + "L1d cache:": "1.5 MiB (48 instances)", + "L1i cache:": "1.5 MiB (48 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "46 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", + "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", + "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Core(s) per socket:": "24", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", + "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", + "Vulnerability Meltdown:": "Mitigation; PTI", + "Vulnerability Retbleed:": "Mitigation; IBRS", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", + "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": 0, + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0, + "num_wires": 4, + "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", + "witness_compiler": "c++" + }, + { + "circuit_id": "c3c2e5be-17ce-49c9-a590-17a34dae5b43", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-14T22:01:38.831Z", + "proving_scheme": "groth16", + "status": "Ready", + "compute_time": "P0DT00H00M07.495982S", + "compute_times": { + "total": 7.583129834383726, + "queued": 9.308287, + "clean_up": 0.0016463026404380798, + "create_cpp": 0.048509422689676285, + "file_setup": 0.2788010146468878, + "compile_cpp": 4.499293332919478, + "create_r1cs": 0.008868083357810974, + "save_results": 0.006020659580826759, + "get_r1cs_info": 0.0004023592919111252, + "groth16_setup": 1.3391796126961708, + "export_verification_key": 1.3986896388232708, + "download_trusted_setup_file": 0.0012662895023822784 + }, + "file_sizes": { + "total": 225418, + "circuit": 213240, + "total_gb": 0.000225418, + "total_mb": 0.225418, + "circuit.dat": 6176, + "code.tar.gz": 497, + "circuit.zkey": 2580, + "verification_key": 2925 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", + "Model:": "85", + "CPU(s):": "96", + "BogoMIPS:": "5400.00", + "L2 cache:": "48 MiB (48 instances)", + "L3 cache:": "66 MiB (2 instances)", + "Stepping:": "4", + "L1d cache:": "1.5 MiB (48 instances)", + "L1i cache:": "1.5 MiB (48 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "46 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", + "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", + "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Core(s) per socket:": "24", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", + "On-line CPU(s) list:": "0,1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41-49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89-95", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88", + "Vulnerability Meltdown:": "Mitigation; PTI", + "Vulnerability Retbleed:": "Mitigation; IBRS", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", + "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": 0, + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0, + "num_wires": 4, + "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", + "witness_compiler": "c++" + }, + { + "circuit_id": "594d795b-4e83-4bdc-9384-adc6dc579063", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-14T22:01:38.077Z", + "proving_scheme": "groth16", + "status": "Ready", + "compute_time": "P0DT00H00M07.994296S", + "compute_times": { + "total": 8.085218539461493, + "queued": 1.072056, + "clean_up": 0.0018068403005599976, + "create_cpp": 0.04692729189991951, + "file_setup": 0.24390947446227074, + "compile_cpp": 4.863685358315706, + "create_r1cs": 0.015030544251203537, + "save_results": 0.006564289331436157, + "get_r1cs_info": 0.0005463734269142151, + "groth16_setup": 1.4818106144666672, + "export_verification_key": 1.4225131068378687, + "download_trusted_setup_file": 0.0018362998962402344 + }, + "file_sizes": { + "total": 225450, + "circuit": 213240, + "total_gb": 0.00022545, + "total_mb": 0.22545, + "circuit.dat": 6176, + "code.tar.gz": 529, + "circuit.zkey": 2580, + "verification_key": 2925 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tgz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", + "Model:": "85", + "CPU(s):": "96", + "BogoMIPS:": "5400.00", + "L2 cache:": "48 MiB (48 instances)", + "L3 cache:": "66 MiB (2 instances)", + "Stepping:": "4", + "L1d cache:": "1.5 MiB (48 instances)", + "L1i cache:": "1.5 MiB (48 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "46 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", + "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", + "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Core(s) per socket:": "24", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", + "On-line CPU(s) list:": "0,1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41-49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89-95", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88", + "Vulnerability Meltdown:": "Mitigation; PTI", + "Vulnerability Retbleed:": "Mitigation; IBRS", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", + "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": 0, + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0, + "num_wires": 4, + "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", + "witness_compiler": "c++" + }, + { + "circuit_id": "cc3da49e-2510-421d-867f-012f50ee430c", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-14T22:01:37.920Z", + "proving_scheme": "groth16", + "status": "Ready", + "compute_time": "P0DT00H00M07.896573S", + "compute_times": { + "total": 7.971910724416375, + "queued": 1.115917, + "clean_up": 0.0015832837671041489, + "create_cpp": 0.03922662511467934, + "file_setup": 0.24468977935612202, + "compile_cpp": 4.67575691267848, + "create_r1cs": 0.01803159900009632, + "save_results": 0.005611082538962364, + "get_r1cs_info": 0.0004954636096954346, + "groth16_setup": 1.507937928661704, + "export_verification_key": 1.4767322856932878, + "download_trusted_setup_file": 0.0013241283595561981 + }, + "file_sizes": { + "total": 225426, + "circuit": 213240, + "total_gb": 0.000225426, + "total_mb": 0.225426, + "circuit.dat": 6176, + "code.tar.gz": 505, + "circuit.zkey": 2580, + "verification_key": 2925 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", + "Model:": "85", + "CPU(s):": "96", + "BogoMIPS:": "5400.00", + "L2 cache:": "48 MiB (48 instances)", + "L3 cache:": "66 MiB (2 instances)", + "Stepping:": "4", + "L1d cache:": "1.5 MiB (48 instances)", + "L1i cache:": "1.5 MiB (48 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "46 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", + "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", + "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Core(s) per socket:": "24", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", + "On-line CPU(s) list:": "0,1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41-49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89-95", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88", + "Vulnerability Meltdown:": "Mitigation; PTI", + "Vulnerability Retbleed:": "Mitigation; IBRS", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", + "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": 0, + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0, + "num_wires": 4, + "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", + "witness_compiler": "c++" + }, + { + "circuit_id": "64c96c11-dba7-4189-aa14-9aecfedddd24", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-14T22:01:37.888Z", + "proving_scheme": "groth16", + "status": "Ready", + "compute_time": "P0DT00H00M08.498334S", + "compute_times": { + "total": 8.571772133931518, + "queued": 1.074783, + "clean_up": 0.0019186809659004211, + "create_cpp": 0.054686328396201134, + "file_setup": 0.2371922954916954, + "compile_cpp": 5.385636718943715, + "create_r1cs": 0.01953158527612686, + "save_results": 0.00620056688785553, + "get_r1cs_info": 0.0007338318973779678, + "groth16_setup": 1.5156110264360905, + "export_verification_key": 1.3472961355000734, + "download_trusted_setup_file": 0.0024816375225782394 + }, + "file_sizes": { + "total": 225418, + "circuit": 213240, + "total_gb": 0.000225418, + "total_mb": 0.225418, + "circuit.dat": 6176, + "code.tar.gz": 497, + "circuit.zkey": 2580, + "verification_key": 2925 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", + "Model:": "85", + "CPU(s):": "96", + "BogoMIPS:": "5400.00", + "L2 cache:": "48 MiB (48 instances)", + "L3 cache:": "66 MiB (2 instances)", + "Stepping:": "4", + "L1d cache:": "1.5 MiB (48 instances)", + "L1i cache:": "1.5 MiB (48 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "46 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", + "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", + "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Core(s) per socket:": "24", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", + "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", + "Vulnerability Meltdown:": "Mitigation; PTI", + "Vulnerability Retbleed:": "Mitigation; IBRS", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", + "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": 0, + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0, + "num_wires": 4, + "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", + "witness_compiler": "c++" + }, + { + "circuit_id": "37c2d797-16be-44b3-af1f-25f921d56027", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-14T22:00:47.710Z", + "proving_scheme": "groth16", + "status": "Ready", + "compute_time": "P0DT00H00M07.442405S", + "compute_times": { + "total": 7.519877161830664, + "queued": 18.163234, + "clean_up": 0.0016106609255075455, + "create_cpp": 0.04706509783864021, + "file_setup": 0.2573662418872118, + "compile_cpp": 4.5406668819487095, + "create_r1cs": 0.010846516117453575, + "save_results": 0.0050650909543037415, + "get_r1cs_info": 0.0006506964564323425, + "groth16_setup": 1.2932439744472504, + "export_verification_key": 1.3604716714471579, + "download_trusted_setup_file": 0.0025113988667726517 + }, + "file_sizes": { + "total": 225426, + "circuit": 213240, + "total_gb": 0.000225426, + "total_mb": 0.225426, + "circuit.dat": 6176, + "code.tar.gz": 505, + "circuit.zkey": 2580, + "verification_key": 2925 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", + "Model:": "85", + "CPU(s):": "96", + "BogoMIPS:": "5400.00", + "L2 cache:": "48 MiB (48 instances)", + "L3 cache:": "66 MiB (2 instances)", + "Stepping:": "4", + "L1d cache:": "1.5 MiB (48 instances)", + "L1i cache:": "1.5 MiB (48 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "46 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", + "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", + "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Core(s) per socket:": "24", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", + "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", + "Vulnerability Meltdown:": "Mitigation; PTI", + "Vulnerability Retbleed:": "Mitigation; IBRS", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", + "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": 0, + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0, + "num_wires": 4, + "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", + "witness_compiler": "c++" + }, + { + "circuit_id": "64245855-4d0a-4a37-8ac5-5cd8fafd4df6", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-14T22:00:47.196Z", + "proving_scheme": "groth16", + "status": "Ready", + "compute_time": "P0DT00H00M07.598393S", + "compute_times": { + "total": 7.670226508751512, + "queued": 9.858631, + "clean_up": 0.0017396323382854462, + "create_cpp": 0.056736381724476814, + "file_setup": 0.2335924208164215, + "compile_cpp": 4.717564798891544, + "create_r1cs": 0.01664743758738041, + "save_results": 0.00606883130967617, + "get_r1cs_info": 0.0007533375173807144, + "groth16_setup": 1.2358768321573734, + "export_verification_key": 1.3982864208519459, + "download_trusted_setup_file": 0.0024993102997541428 + }, + "file_sizes": { + "total": 225418, + "circuit": 213240, + "total_gb": 0.000225418, + "total_mb": 0.225418, + "circuit.dat": 6176, + "code.tar.gz": 497, + "circuit.zkey": 2580, + "verification_key": 2925 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", + "Model:": "85", + "CPU(s):": "96", + "BogoMIPS:": "5400.00", + "L2 cache:": "48 MiB (48 instances)", + "L3 cache:": "66 MiB (2 instances)", + "Stepping:": "4", + "L1d cache:": "1.5 MiB (48 instances)", + "L1i cache:": "1.5 MiB (48 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "46 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", + "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", + "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Core(s) per socket:": "24", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", + "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", + "Vulnerability Meltdown:": "Mitigation; PTI", + "Vulnerability Retbleed:": "Mitigation; IBRS", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", + "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": 0, + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0, + "num_wires": 4, + "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", + "witness_compiler": "c++" + }, + { + "circuit_id": "67f4649b-cef0-48a9-853e-08bc9071a422", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-14T22:00:47.135Z", + "proving_scheme": "groth16", + "status": "Ready", + "compute_time": "P0DT00H00M07.668392S", + "compute_times": { + "total": 7.747372977435589, + "queued": 1.05809, + "clean_up": 0.001848604530096054, + "create_cpp": 0.04929644614458084, + "file_setup": 0.22854838147759438, + "compile_cpp": 4.640512635931373, + "create_r1cs": 0.015147404745221138, + "save_results": 0.005650337785482407, + "get_r1cs_info": 0.0006706751883029938, + "groth16_setup": 1.3484645150601864, + "export_verification_key": 1.4543015789240599, + "download_trusted_setup_file": 0.002453230321407318 + }, + "file_sizes": { + "total": 225450, + "circuit": 213240, + "total_gb": 0.00022545, + "total_mb": 0.22545, + "circuit.dat": 6176, + "code.tar.gz": 529, + "circuit.zkey": 2580, + "verification_key": 2925 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tgz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", + "Model:": "85", + "CPU(s):": "96", + "BogoMIPS:": "5400.00", + "L2 cache:": "48 MiB (48 instances)", + "L3 cache:": "66 MiB (2 instances)", + "Stepping:": "4", + "L1d cache:": "1.5 MiB (48 instances)", + "L1i cache:": "1.5 MiB (48 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "46 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", + "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", + "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Core(s) per socket:": "24", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", + "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", + "Vulnerability Meltdown:": "Mitigation; PTI", + "Vulnerability Retbleed:": "Mitigation; IBRS", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", + "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": 0, + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0, + "num_wires": 4, + "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", + "witness_compiler": "c++" + }, + { + "circuit_id": "7a70a5ab-e8ed-4f4b-86e7-6b4fee6732b5", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-14T21:59:59.139Z", + "proving_scheme": "groth16", + "status": "Ready", + "compute_time": "P0DT00H00M07.396312S", + "compute_times": { + "total": 7.46887100674212, + "queued": 18.652859, + "clean_up": 0.0016880836337804794, + "create_cpp": 0.042848482728004456, + "file_setup": 0.22210602462291718, + "compile_cpp": 4.473998909816146, + "create_r1cs": 0.018347671255469322, + "save_results": 0.005641408264636993, + "get_r1cs_info": 0.0005728006362915039, + "groth16_setup": 1.427965046837926, + "export_verification_key": 1.2737494725733995, + "download_trusted_setup_file": 0.0014454666525125504 + }, + "file_sizes": { + "total": 225426, + "circuit": 213240, + "total_gb": 0.000225426, + "total_mb": 0.225426, + "circuit.dat": 6176, + "code.tar.gz": 505, + "circuit.zkey": 2580, + "verification_key": 2925 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", + "Model:": "85", + "CPU(s):": "96", + "BogoMIPS:": "5400.00", + "L2 cache:": "48 MiB (48 instances)", + "L3 cache:": "66 MiB (2 instances)", + "Stepping:": "4", + "L1d cache:": "1.5 MiB (48 instances)", + "L1i cache:": "1.5 MiB (48 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "46 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", + "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", + "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Core(s) per socket:": "24", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", + "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", + "Vulnerability Meltdown:": "Mitigation; PTI", + "Vulnerability Retbleed:": "Mitigation; IBRS", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", + "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": 0, + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0, + "num_wires": 4, + "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", + "witness_compiler": "c++" + }, + { + "circuit_id": "1d2b65a6-0b62-46f1-8552-e5d306b8e5a9", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-14T18:46:18.351Z", + "proving_scheme": "groth16", + "status": "Ready", + "compute_time": "P0DT00H00M08.072504S", + "compute_times": { + "total": 8.165413077920675, + "queued": 1.073288, + "clean_up": 0.001566711813211441, + "create_cpp": 0.04813777469098568, + "file_setup": 0.273874131962657, + "compile_cpp": 4.797466650605202, + "create_r1cs": 0.012367704883217812, + "save_results": 0.005589749664068222, + "get_r1cs_info": 0.0007054843008518219, + "groth16_setup": 1.6635373625904322, + "export_verification_key": 1.359395258128643, + "download_trusted_setup_file": 0.0024296436458826065 + }, + "file_sizes": { + "total": 225418, + "circuit": 213240, + "total_gb": 0.000225418, + "total_mb": 0.225418, + "circuit.dat": 6176, + "code.tar.gz": 497, + "circuit.zkey": 2580, + "verification_key": 2925 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", + "Model:": "85", + "CPU(s):": "96", + "BogoMIPS:": "5400.00", + "L2 cache:": "48 MiB (48 instances)", + "L3 cache:": "66 MiB (2 instances)", + "Stepping:": "4", + "L1d cache:": "1.5 MiB (48 instances)", + "L1i cache:": "1.5 MiB (48 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "46 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", + "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", + "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Core(s) per socket:": "24", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", + "On-line CPU(s) list:": "0,1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41-49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89-95", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88", + "Vulnerability Meltdown:": "Mitigation; PTI", + "Vulnerability Retbleed:": "Mitigation; IBRS", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", + "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": 0, + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0, + "num_wires": 4, + "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", + "witness_compiler": "c++" + }, + { + "circuit_id": "6c8880ec-74b0-4668-a577-bf49ab082ee6", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-14T18:46:17.471Z", + "proving_scheme": "groth16", + "status": "Ready", + "compute_time": "P0DT00H00M08.660558S", + "compute_times": { + "total": 8.733056403696537, + "queued": 1.092197, + "clean_up": 0.0028520766645669937, + "create_cpp": 0.052579380571842194, + "file_setup": 0.23965846560895443, + "compile_cpp": 5.635051192715764, + "create_r1cs": 0.019429346546530724, + "save_results": 0.005396207794547081, + "get_r1cs_info": 0.0007434431463479996, + "groth16_setup": 1.4462960939854383, + "export_verification_key": 1.3281519785523415, + "download_trusted_setup_file": 0.0024572182446718216 + }, + "file_sizes": { + "total": 225418, + "circuit": 213240, + "total_gb": 0.000225418, + "total_mb": 0.225418, + "circuit.dat": 6176, + "code.tar.gz": 497, + "circuit.zkey": 2580, + "verification_key": 2925 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", + "Model:": "85", + "CPU(s):": "96", + "BogoMIPS:": "5400.00", + "L2 cache:": "48 MiB (48 instances)", + "L3 cache:": "66 MiB (2 instances)", + "Stepping:": "4", + "L1d cache:": "1.5 MiB (48 instances)", + "L1i cache:": "1.5 MiB (48 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "46 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", + "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", + "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Core(s) per socket:": "24", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", + "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", + "Vulnerability Meltdown:": "Mitigation; PTI", + "Vulnerability Retbleed:": "Mitigation; IBRS", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", + "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": 0, + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0, + "num_wires": 4, + "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", + "witness_compiler": "c++" + }, + { + "circuit_id": "3b4060a2-6272-49df-a5f5-2d848ea3568d", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-14T18:46:17.080Z", + "proving_scheme": "groth16", + "status": "Ready", + "compute_time": "P0DT00H00M07.963489S", + "compute_times": { + "total": 8.049663323909044, + "queued": 1.109603, + "clean_up": 0.0019163694232702255, + "create_cpp": 0.05177045613527298, + "file_setup": 0.2615332882851362, + "compile_cpp": 4.643600087612867, + "create_r1cs": 0.016842812299728394, + "save_results": 0.006387719884514809, + "get_r1cs_info": 0.0007886830717325211, + "groth16_setup": 1.5305246319621801, + "export_verification_key": 1.5330269560217857, + "download_trusted_setup_file": 0.0027020927518606186 + }, + "file_sizes": { + "total": 225426, + "circuit": 213240, + "total_gb": 0.000225426, + "total_mb": 0.225426, + "circuit.dat": 6176, + "code.tar.gz": 505, + "circuit.zkey": 2580, + "verification_key": 2925 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", + "Model:": "85", + "CPU(s):": "96", + "BogoMIPS:": "5400.00", + "L2 cache:": "48 MiB (48 instances)", + "L3 cache:": "66 MiB (2 instances)", + "Stepping:": "4", + "L1d cache:": "1.5 MiB (48 instances)", + "L1i cache:": "1.5 MiB (48 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "46 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", + "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", + "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Core(s) per socket:": "24", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", + "On-line CPU(s) list:": "0,1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41-49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89-95", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88", + "Vulnerability Meltdown:": "Mitigation; PTI", + "Vulnerability Retbleed:": "Mitigation; IBRS", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", + "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": 0, + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0, + "num_wires": 4, + "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", + "witness_compiler": "c++" + }, + { + "circuit_id": "e9738cfe-e43f-47eb-bf7e-1aee7eda254d", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-14T18:46:17.031Z", + "proving_scheme": "groth16", + "status": "Ready", + "compute_time": "P0DT00H00M07.752852S", + "compute_times": { + "total": 7.833738502115011, + "queued": 1.103525, + "clean_up": 0.0007738582789897919, + "create_cpp": 0.04726468026638031, + "file_setup": 0.2604553271085024, + "compile_cpp": 4.593758463859558, + "create_r1cs": 0.017804840579628944, + "save_results": 0.005725737661123276, + "get_r1cs_info": 0.0007703714072704315, + "groth16_setup": 1.4161110799759626, + "export_verification_key": 1.4887929297983646, + "download_trusted_setup_file": 0.001879064366221428 + }, + "file_sizes": { + "total": 225450, + "circuit": 213240, + "total_gb": 0.00022545, + "total_mb": 0.22545, + "circuit.dat": 6176, + "code.tar.gz": 529, + "circuit.zkey": 2580, + "verification_key": 2925 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tgz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", + "Model:": "85", + "CPU(s):": "96", + "BogoMIPS:": "5400.00", + "L2 cache:": "48 MiB (48 instances)", + "L3 cache:": "66 MiB (2 instances)", + "Stepping:": "4", + "L1d cache:": "1.5 MiB (48 instances)", + "L1i cache:": "1.5 MiB (48 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "46 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", + "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", + "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Core(s) per socket:": "24", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", + "On-line CPU(s) list:": "0,1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41-49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89-95", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88", + "Vulnerability Meltdown:": "Mitigation; PTI", + "Vulnerability Retbleed:": "Mitigation; IBRS", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", + "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": 0, + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0, + "num_wires": 4, + "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", + "witness_compiler": "c++" + }, + { + "circuit_id": "42288e72-32af-4d49-a000-0c4106d72b1a", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-14T18:44:50.525Z", + "proving_scheme": "groth16", + "status": "Ready", + "compute_time": "P0DT00H00M07.721066S", + "compute_times": { + "total": 7.797398852184415, + "queued": 29.569685, + "clean_up": 0.00167049840092659, + "create_cpp": 0.05636698007583618, + "file_setup": 0.2505635917186737, + "compile_cpp": 4.744883842766285, + "create_r1cs": 0.009372701868414879, + "save_results": 0.0053126197308301926, + "get_r1cs_info": 0.0004866402596235275, + "groth16_setup": 1.37183235026896, + "export_verification_key": 1.3548658676445484, + "download_trusted_setup_file": 0.0013033263385295868 + }, + "file_sizes": { + "total": 225418, + "circuit": 213240, + "total_gb": 0.000225418, + "total_mb": 0.225418, + "circuit.dat": 6176, + "code.tar.gz": 497, + "circuit.zkey": 2580, + "verification_key": 2925 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", + "Model:": "85", + "CPU(s):": "96", + "BogoMIPS:": "5400.00", + "L2 cache:": "48 MiB (48 instances)", + "L3 cache:": "66 MiB (2 instances)", + "Stepping:": "4", + "L1d cache:": "1.5 MiB (48 instances)", + "L1i cache:": "1.5 MiB (48 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "46 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", + "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", + "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Core(s) per socket:": "24", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", + "On-line CPU(s) list:": "0,1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41-49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89-95", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88", + "Vulnerability Meltdown:": "Mitigation; PTI", + "Vulnerability Retbleed:": "Mitigation; IBRS", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", + "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": 0, + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0, + "num_wires": 4, + "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", + "witness_compiler": "c++" + }, + { + "circuit_id": "fbaee0ab-13a1-4548-9434-7f31a9db8909", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-14T18:44:50.133Z", + "proving_scheme": "groth16", + "status": "Ready", + "compute_time": "P0DT00H00M07.576409S", + "compute_times": { + "total": 7.656400920823216, + "queued": 27.995471, + "clean_up": 0.0009287483990192413, + "create_cpp": 0.05411672405898571, + "file_setup": 0.26574583910405636, + "compile_cpp": 4.590775987133384, + "create_r1cs": 0.01676061749458313, + "save_results": 0.00399848073720932, + "get_r1cs_info": 0.000689459964632988, + "groth16_setup": 1.3729439843446016, + "export_verification_key": 1.3473240491002798, + "download_trusted_setup_file": 0.0025283172726631165 + }, + "file_sizes": { + "total": 225426, + "circuit": 213240, + "total_gb": 0.000225426, + "total_mb": 0.225426, + "circuit.dat": 6176, + "code.tar.gz": 505, + "circuit.zkey": 2580, + "verification_key": 2925 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", + "Model:": "85", + "CPU(s):": "96", + "BogoMIPS:": "5400.00", + "L2 cache:": "48 MiB (48 instances)", + "L3 cache:": "66 MiB (2 instances)", + "Stepping:": "4", + "L1d cache:": "1.5 MiB (48 instances)", + "L1i cache:": "1.5 MiB (48 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "46 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", + "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", + "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Core(s) per socket:": "24", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", + "On-line CPU(s) list:": "0,1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41-49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89-95", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88", + "Vulnerability Meltdown:": "Mitigation; PTI", + "Vulnerability Retbleed:": "Mitigation; IBRS", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", + "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": 0, + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0, + "num_wires": 4, + "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", + "witness_compiler": "c++" + }, + { + "circuit_id": "033af40b-8898-431b-a0e9-67c0d4a8d482", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-14T18:44:49.642Z", + "proving_scheme": "groth16", + "status": "Ready", + "compute_time": "P0DT00H00M07.669965S", + "compute_times": { + "total": 7.7474795281887054, + "queued": 25.186763, + "clean_up": 0.0007379837334156036, + "create_cpp": 0.05420535057783127, + "file_setup": 0.2591994274407625, + "compile_cpp": 4.683894477784634, + "create_r1cs": 0.01852503977715969, + "save_results": 0.004642404615879059, + "get_r1cs_info": 0.0008469689637422562, + "groth16_setup": 1.3640733323991299, + "export_verification_key": 1.3582920264452696, + "download_trusted_setup_file": 0.0026291999965906143 + }, + "file_sizes": { + "total": 225450, + "circuit": 213240, + "total_gb": 0.00022545, + "total_mb": 0.22545, + "circuit.dat": 6176, + "code.tar.gz": 529, + "circuit.zkey": 2580, + "verification_key": 2925 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tgz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", + "Model:": "85", + "CPU(s):": "96", + "BogoMIPS:": "5400.00", + "L2 cache:": "48 MiB (48 instances)", + "L3 cache:": "66 MiB (2 instances)", + "Stepping:": "4", + "L1d cache:": "1.5 MiB (48 instances)", + "L1i cache:": "1.5 MiB (48 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "46 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", + "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", + "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Core(s) per socket:": "24", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", + "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", + "Vulnerability Meltdown:": "Mitigation; PTI", + "Vulnerability Retbleed:": "Mitigation; IBRS", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", + "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": 0, + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0, + "num_wires": 4, + "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", + "witness_compiler": "c++" + }, + { + "circuit_id": "c3770fbd-f11b-4b49-90d3-cfad9feb3fd9", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-14T18:44:49.597Z", + "proving_scheme": "groth16", + "status": "Ready", + "compute_time": "P0DT00H00M07.666218S", + "compute_times": { + "total": 7.743923228234053, + "queued": 16.244985, + "clean_up": 0.0016544517129659653, + "create_cpp": 0.04558009281754494, + "file_setup": 0.24755106307566166, + "compile_cpp": 4.744448408484459, + "create_r1cs": 0.01863648183643818, + "save_results": 0.005422661080956459, + "get_r1cs_info": 0.0007555857300758362, + "groth16_setup": 1.3294172957539558, + "export_verification_key": 1.347303519025445, + "download_trusted_setup_file": 0.002494456246495247 + }, + "file_sizes": { + "total": 225418, + "circuit": 213240, + "total_gb": 0.000225418, + "total_mb": 0.225418, + "circuit.dat": 6176, + "code.tar.gz": 497, + "circuit.zkey": 2580, + "verification_key": 2925 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", + "Model:": "85", + "CPU(s):": "96", + "BogoMIPS:": "5400.00", + "L2 cache:": "48 MiB (48 instances)", + "L3 cache:": "66 MiB (2 instances)", + "Stepping:": "4", + "L1d cache:": "1.5 MiB (48 instances)", + "L1i cache:": "1.5 MiB (48 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "46 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", + "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", + "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Core(s) per socket:": "24", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", + "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", + "Vulnerability Meltdown:": "Mitigation; PTI", + "Vulnerability Retbleed:": "Mitigation; IBRS", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", + "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": 0, + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0, + "num_wires": 4, + "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", + "witness_compiler": "c++" + }, + { + "circuit_id": "ace357b8-01b9-4f55-9d17-a2ca4bc4d638", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-14T18:24:05.843Z", + "proving_scheme": "groth16", + "status": "Ready", + "compute_time": "P0DT00H00M07.484466S", + "compute_times": { + "total": 7.562151093035936, + "queued": 20.625634, + "clean_up": 0.0017509087920188904, + "create_cpp": 0.04661180265247822, + "file_setup": 0.24942035041749477, + "compile_cpp": 4.542725313454866, + "create_r1cs": 0.019399696961045265, + "save_results": 0.007124448195099831, + "get_r1cs_info": 0.0007141679525375366, + "groth16_setup": 1.3570096530020237, + "export_verification_key": 1.3343026712536812, + "download_trusted_setup_file": 0.0024999063462018967 + }, + "file_sizes": { + "total": 225418, + "circuit": 213240, + "total_gb": 0.000225418, + "total_mb": 0.225418, + "circuit.dat": 6176, + "code.tar.gz": 497, + "circuit.zkey": 2580, + "verification_key": 2925 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", + "Model:": "85", + "CPU(s):": "96", + "BogoMIPS:": "5400.00", + "L2 cache:": "48 MiB (48 instances)", + "L3 cache:": "66 MiB (2 instances)", + "Stepping:": "4", + "L1d cache:": "1.5 MiB (48 instances)", + "L1i cache:": "1.5 MiB (48 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "46 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", + "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", + "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Core(s) per socket:": "24", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", + "On-line CPU(s) list:": "0,1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41-49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89-95", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88", + "Vulnerability Meltdown:": "Mitigation; PTI", + "Vulnerability Retbleed:": "Mitigation; IBRS", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", + "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": 0, + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0, + "num_wires": 4, + "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", + "witness_compiler": "c++" + }, + { + "circuit_id": "a69bedc7-a23a-48c0-9a6d-d7257cd0ee07", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-14T18:24:04.740Z", + "proving_scheme": "groth16", + "status": "Ready", + "compute_time": "P0DT00H00M07.611924S", + "compute_times": { + "total": 7.688939314335585, + "queued": 18.98661, + "clean_up": 0.0007829554378986359, + "create_cpp": 0.05032696574926376, + "file_setup": 0.2520132940262556, + "compile_cpp": 4.722641088068485, + "create_r1cs": 0.0107505451887846, + "save_results": 0.005139663815498352, + "get_r1cs_info": 0.0006618890911340714, + "groth16_setup": 1.3368865679949522, + "export_verification_key": 1.3068783804774284, + "download_trusted_setup_file": 0.0024257171899080276 + }, + "file_sizes": { + "total": 225418, + "circuit": 213240, + "total_gb": 0.000225418, + "total_mb": 0.225418, + "circuit.dat": 6176, + "code.tar.gz": 497, + "circuit.zkey": 2580, + "verification_key": 2925 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", + "Model:": "85", + "CPU(s):": "96", + "BogoMIPS:": "5400.00", + "L2 cache:": "48 MiB (48 instances)", + "L3 cache:": "66 MiB (2 instances)", + "Stepping:": "4", + "L1d cache:": "1.5 MiB (48 instances)", + "L1i cache:": "1.5 MiB (48 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "46 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", + "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", + "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Core(s) per socket:": "24", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", + "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", + "Vulnerability Meltdown:": "Mitigation; PTI", + "Vulnerability Retbleed:": "Mitigation; IBRS", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", + "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": 0, + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0, + "num_wires": 4, + "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", + "witness_compiler": "c++" + }, + { + "circuit_id": "2806fe3b-b959-40b4-b68a-6a48a4730339", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-14T18:24:04.538Z", + "proving_scheme": "groth16", + "status": "Ready", + "compute_time": "P0DT00H00M07.671080S", + "compute_times": { + "total": 7.7527586203068495, + "queued": 10.266939, + "clean_up": 0.0017596669495105743, + "create_cpp": 0.05662725120782852, + "file_setup": 0.24927497655153275, + "compile_cpp": 4.834171952679753, + "create_r1cs": 0.015801193192601204, + "save_results": 0.005597377195954323, + "get_r1cs_info": 0.0006633754819631577, + "groth16_setup": 1.285094628110528, + "export_verification_key": 1.3006944358348846, + "download_trusted_setup_file": 0.002444768324494362 + }, + "file_sizes": { + "total": 225450, + "circuit": 213240, + "total_gb": 0.00022545, + "total_mb": 0.22545, + "circuit.dat": 6176, + "code.tar.gz": 529, + "circuit.zkey": 2580, + "verification_key": 2925 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tgz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", + "Model:": "85", + "CPU(s):": "96", + "BogoMIPS:": "5400.00", + "L2 cache:": "48 MiB (48 instances)", + "L3 cache:": "66 MiB (2 instances)", + "Stepping:": "4", + "L1d cache:": "1.5 MiB (48 instances)", + "L1i cache:": "1.5 MiB (48 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "46 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", + "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", + "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Core(s) per socket:": "24", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", + "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", + "Vulnerability Meltdown:": "Mitigation; PTI", + "Vulnerability Retbleed:": "Mitigation; IBRS", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", + "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": 0, + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0, + "num_wires": 4, + "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", + "witness_compiler": "c++" + }, + { + "circuit_id": "14806e82-8e0e-42f4-921c-aba1914cc309", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-14T18:24:04.382Z", + "proving_scheme": "groth16", + "status": "Ready", + "compute_time": "P0DT00H00M07.909717S", + "compute_times": { + "total": 7.9800247810781, + "queued": 1.219168, + "clean_up": 0.0017995405942201614, + "create_cpp": 0.04708561487495899, + "file_setup": 0.2477656602859497, + "compile_cpp": 4.89770944416523, + "create_r1cs": 0.01611543633043766, + "save_results": 0.005786914378404617, + "get_r1cs_info": 0.0007048510015010834, + "groth16_setup": 1.3873562160879374, + "export_verification_key": 1.3729455471038818, + "download_trusted_setup_file": 0.002437746152281761 + }, + "file_sizes": { + "total": 225424, + "circuit": 213240, + "total_gb": 0.000225424, + "total_mb": 0.225424, + "circuit.dat": 6176, + "code.tar.gz": 503, + "circuit.zkey": 2580, + "verification_key": 2925 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", + "Model:": "85", + "CPU(s):": "96", + "BogoMIPS:": "5400.00", + "L2 cache:": "48 MiB (48 instances)", + "L3 cache:": "66 MiB (2 instances)", + "Stepping:": "4", + "L1d cache:": "1.5 MiB (48 instances)", + "L1i cache:": "1.5 MiB (48 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "46 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", + "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", + "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Core(s) per socket:": "24", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", + "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", + "Vulnerability Meltdown:": "Mitigation; PTI", + "Vulnerability Retbleed:": "Mitigation; IBRS", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", + "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": 0, + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0, + "num_wires": 4, + "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", + "witness_compiler": "c++" + }, + { + "circuit_id": "6ed31334-d260-4652-ad11-fce789b04ad2", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-14T18:17:09.984Z", + "proving_scheme": "groth16", + "status": "Ready", + "compute_time": "P0DT00H00M07.597495S", + "compute_times": { + "total": 7.674594018608332, + "queued": 8.634986, + "clean_up": 0.0016419794410467148, + "create_cpp": 0.047586649656295776, + "file_setup": 0.2436046116054058, + "compile_cpp": 4.683977667242289, + "create_r1cs": 0.017859995365142822, + "save_results": 0.00542888417840004, + "get_r1cs_info": 0.0007064882665872574, + "groth16_setup": 1.3227286096662283, + "export_verification_key": 1.3475021123886108, + "download_trusted_setup_file": 0.00292983278632164 + }, + "file_sizes": { + "total": 225418, + "circuit": 213240, + "total_gb": 0.000225418, + "total_mb": 0.225418, + "circuit.dat": 6176, + "code.tar.gz": 497, + "circuit.zkey": 2580, + "verification_key": 2925 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", + "Model:": "85", + "CPU(s):": "96", + "BogoMIPS:": "5400.00", + "L2 cache:": "48 MiB (48 instances)", + "L3 cache:": "66 MiB (2 instances)", + "Stepping:": "4", + "L1d cache:": "1.5 MiB (48 instances)", + "L1i cache:": "1.5 MiB (48 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "46 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", + "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", + "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Core(s) per socket:": "24", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", + "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", + "Vulnerability Meltdown:": "Mitigation; PTI", + "Vulnerability Retbleed:": "Mitigation; IBRS", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", + "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": 0, + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0, + "num_wires": 4, + "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", + "witness_compiler": "c++" + }, + { + "circuit_id": "adb0b7b7-c2cd-4260-8369-e0f2d400a104", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-14T18:17:09.000Z", + "proving_scheme": "groth16", + "status": "Ready", + "compute_time": "P0DT00H00M08.020968S", + "compute_times": { + "total": 8.11050195991993, + "queued": 1.106339, + "clean_up": 0.0017776619642972946, + "create_cpp": 0.042624855414032936, + "file_setup": 0.29933272302150726, + "compile_cpp": 4.833516420796514, + "create_r1cs": 0.01687009632587433, + "save_results": 0.006504466757178307, + "get_r1cs_info": 0.00066353939473629, + "groth16_setup": 1.4784862399101257, + "export_verification_key": 1.427861487492919, + "download_trusted_setup_file": 0.002409808337688446 + }, + "file_sizes": { + "total": 225450, + "circuit": 213240, + "total_gb": 0.00022545, + "total_mb": 0.22545, + "circuit.dat": 6176, + "code.tar.gz": 529, + "circuit.zkey": 2580, + "verification_key": 2925 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tgz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", + "Model:": "85", + "CPU(s):": "96", + "BogoMIPS:": "5400.00", + "L2 cache:": "48 MiB (48 instances)", + "L3 cache:": "66 MiB (2 instances)", + "Stepping:": "4", + "L1d cache:": "1.5 MiB (48 instances)", + "L1i cache:": "1.5 MiB (48 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "46 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", + "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", + "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Core(s) per socket:": "24", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", + "On-line CPU(s) list:": "0,1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41-49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89-95", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88", + "Vulnerability Meltdown:": "Mitigation; PTI", + "Vulnerability Retbleed:": "Mitigation; IBRS", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", + "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": 0, + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0, + "num_wires": 4, + "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", + "witness_compiler": "c++" + }, + { + "circuit_id": "22d70ee8-f3df-4941-b399-07d13f78abe9", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-14T18:17:08.494Z", + "proving_scheme": "groth16", + "status": "Ready", + "compute_time": "P0DT00H00M07.691111S", + "compute_times": { + "total": 7.771573496982455, + "queued": 1.17, + "clean_up": 0.0016926135867834091, + "create_cpp": 0.05935652367770672, + "file_setup": 0.2620077710598707, + "compile_cpp": 4.75682108476758, + "create_r1cs": 0.014452280476689339, + "save_results": 0.005480160936713219, + "get_r1cs_info": 0.0006888676434755325, + "groth16_setup": 1.3388383872807026, + "export_verification_key": 1.32946134544909, + "download_trusted_setup_file": 0.0022690370678901672 + }, + "file_sizes": { + "total": 225418, + "circuit": 213240, + "total_gb": 0.000225418, + "total_mb": 0.225418, + "circuit.dat": 6176, + "code.tar.gz": 497, + "circuit.zkey": 2580, + "verification_key": 2925 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", + "Model:": "85", + "CPU(s):": "96", + "BogoMIPS:": "5400.00", + "L2 cache:": "48 MiB (48 instances)", + "L3 cache:": "66 MiB (2 instances)", + "Stepping:": "4", + "L1d cache:": "1.5 MiB (48 instances)", + "L1i cache:": "1.5 MiB (48 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "46 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", + "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", + "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Core(s) per socket:": "24", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", + "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", + "Vulnerability Meltdown:": "Mitigation; PTI", + "Vulnerability Retbleed:": "Mitigation; IBRS", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", + "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": 0, + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0, + "num_wires": 4, + "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", + "witness_compiler": "c++" + }, + { + "circuit_id": "737f5589-b161-48c1-8afb-3c24a136a6c1", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-14T18:17:08.468Z", + "proving_scheme": "groth16", + "status": "Ready", + "compute_time": "P0DT00H00M08.291924S", + "compute_times": { + "total": 8.365394989028573, + "queued": 1.157799, + "clean_up": 0.0015689730644226074, + "create_cpp": 0.04686474800109863, + "file_setup": 0.24952785670757294, + "compile_cpp": 5.094061799347401, + "create_r1cs": 0.019047506153583527, + "save_results": 0.0056635066866874695, + "get_r1cs_info": 0.0004320461302995682, + "groth16_setup": 1.5466318130493164, + "export_verification_key": 1.39987507276237, + "download_trusted_setup_file": 0.0013030990958213806 + }, + "file_sizes": { + "total": 225424, + "circuit": 213240, + "total_gb": 0.000225424, + "total_mb": 0.225424, + "circuit.dat": 6176, + "code.tar.gz": 503, + "circuit.zkey": 2580, + "verification_key": 2925 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", + "Model:": "85", + "CPU(s):": "96", + "BogoMIPS:": "5400.00", + "L2 cache:": "48 MiB (48 instances)", + "L3 cache:": "66 MiB (2 instances)", + "Stepping:": "4", + "L1d cache:": "1.5 MiB (48 instances)", + "L1i cache:": "1.5 MiB (48 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "46 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", + "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", + "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Core(s) per socket:": "24", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", + "On-line CPU(s) list:": "0,1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41-49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89-95", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88", + "Vulnerability Meltdown:": "Mitigation; PTI", + "Vulnerability Retbleed:": "Mitigation; IBRS", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", + "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": 0, + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0, + "num_wires": 4, + "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", + "witness_compiler": "c++" + }, + { + "circuit_id": "00baff55-6d30-4365-9727-806c227187ec", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-14T18:15:35.627Z", + "proving_scheme": "groth16", + "status": "Ready", + "compute_time": "P0DT00H00M07.619282S", + "compute_times": { + "total": 7.691293215379119, + "queued": 19.200144, + "clean_up": 0.0017832368612289429, + "create_cpp": 0.04681010544300079, + "file_setup": 0.24938089400529861, + "compile_cpp": 4.651383237913251, + "create_r1cs": 0.016947990283370018, + "save_results": 0.0064728278666734695, + "get_r1cs_info": 0.0008025597780942917, + "groth16_setup": 1.3398670889437199, + "export_verification_key": 1.37474081851542, + "download_trusted_setup_file": 0.002573670819401741 + }, + "file_sizes": { + "total": 225424, + "circuit": 213240, + "total_gb": 0.000225424, + "total_mb": 0.225424, + "circuit.dat": 6176, + "code.tar.gz": 503, + "circuit.zkey": 2580, + "verification_key": 2925 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", + "Model:": "85", + "CPU(s):": "96", + "BogoMIPS:": "5400.00", + "L2 cache:": "48 MiB (48 instances)", + "L3 cache:": "66 MiB (2 instances)", + "Stepping:": "4", + "L1d cache:": "1.5 MiB (48 instances)", + "L1i cache:": "1.5 MiB (48 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "46 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", + "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", + "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Core(s) per socket:": "24", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", + "On-line CPU(s) list:": "0,1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41-49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89-95", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88", + "Vulnerability Meltdown:": "Mitigation; PTI", + "Vulnerability Retbleed:": "Mitigation; IBRS", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", + "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": 0, + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0, + "num_wires": 4, + "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", + "witness_compiler": "c++" + }, + { + "circuit_id": "83b80a52-0af7-4ce3-971e-f271e4657643", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-14T18:15:35.129Z", + "proving_scheme": "groth16", + "status": "Ready", + "compute_time": "P0DT00H00M07.374925S", + "compute_times": { + "total": 7.4528124667704105, + "queued": 16.312228, + "clean_up": 0.0017383582890033722, + "create_cpp": 0.05669763870537281, + "file_setup": 0.2676529083400965, + "compile_cpp": 4.4346959348768, + "create_r1cs": 0.017131024971604347, + "save_results": 0.0058726053684949875, + "get_r1cs_info": 0.00045347586274147034, + "groth16_setup": 1.302895437926054, + "export_verification_key": 1.3638175278902054, + "download_trusted_setup_file": 0.001258334144949913 + }, + "file_sizes": { + "total": 225418, + "circuit": 213240, + "total_gb": 0.000225418, + "total_mb": 0.225418, + "circuit.dat": 6176, + "code.tar.gz": 497, + "circuit.zkey": 2580, + "verification_key": 2925 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", + "Model:": "85", + "CPU(s):": "96", + "BogoMIPS:": "5400.00", + "L2 cache:": "48 MiB (48 instances)", + "L3 cache:": "66 MiB (2 instances)", + "Stepping:": "4", + "L1d cache:": "1.5 MiB (48 instances)", + "L1i cache:": "1.5 MiB (48 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "46 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", + "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", + "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Core(s) per socket:": "24", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", + "On-line CPU(s) list:": "0,1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41-49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89-95", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88", + "Vulnerability Meltdown:": "Mitigation; PTI", + "Vulnerability Retbleed:": "Mitigation; IBRS", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", + "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": 0, + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0, + "num_wires": 4, + "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", + "witness_compiler": "c++" + }, + { + "circuit_id": "5db66e21-93fa-4cfd-9b54-eba6cc5f0b5d", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-14T18:15:35.089Z", + "proving_scheme": "groth16", + "status": "Ready", + "compute_time": "P0DT00H00M07.658449S", + "compute_times": { + "total": 7.735888196155429, + "queued": 15.077966, + "clean_up": 0.0016767363995313644, + "create_cpp": 0.047638872638344765, + "file_setup": 0.2675781920552254, + "compile_cpp": 4.7792276702821255, + "create_r1cs": 0.018472682684659958, + "save_results": 0.00616835243999958, + "get_r1cs_info": 0.0007582195103168488, + "groth16_setup": 1.3009603060781956, + "export_verification_key": 1.3102184478193521, + "download_trusted_setup_file": 0.002536667510867119 + }, + "file_sizes": { + "total": 225450, + "circuit": 213240, + "total_gb": 0.00022545, + "total_mb": 0.22545, + "circuit.dat": 6176, + "code.tar.gz": 529, + "circuit.zkey": 2580, + "verification_key": 2925 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tgz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", + "Model:": "85", + "CPU(s):": "96", + "BogoMIPS:": "5400.00", + "L2 cache:": "48 MiB (48 instances)", + "L3 cache:": "66 MiB (2 instances)", + "Stepping:": "4", + "L1d cache:": "1.5 MiB (48 instances)", + "L1i cache:": "1.5 MiB (48 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "46 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", + "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", + "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Core(s) per socket:": "24", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", + "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", + "Vulnerability Meltdown:": "Mitigation; PTI", + "Vulnerability Retbleed:": "Mitigation; IBRS", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", + "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": 0, + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0, + "num_wires": 4, + "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", + "witness_compiler": "c++" + }, + { + "circuit_id": "5665be07-b604-414b-b6a1-9f87a21cab12", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-14T18:01:33.996Z", + "proving_scheme": "groth16", + "status": "Ready", + "compute_time": "P0DT00H00M07.358621S", + "compute_times": { + "total": 7.430434772744775, + "queued": 1.067157, + "clean_up": 0.0017831884324550629, + "create_cpp": 0.04887022823095322, + "file_setup": 0.24746119230985641, + "compile_cpp": 4.42920583859086, + "create_r1cs": 0.015806885436177254, + "save_results": 0.005989404395222664, + "get_r1cs_info": 0.000494047999382019, + "groth16_setup": 1.2992996741086245, + "export_verification_key": 1.3796110693365335, + "download_trusted_setup_file": 0.0014664717018604279 + }, + "file_sizes": { + "total": 225418, + "circuit": 213240, + "total_gb": 0.000225418, + "total_mb": 0.225418, + "circuit.dat": 6176, + "code.tar.gz": 497, + "circuit.zkey": 2580, + "verification_key": 2925 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", + "Model:": "85", + "CPU(s):": "96", + "BogoMIPS:": "5400.00", + "L2 cache:": "48 MiB (48 instances)", + "L3 cache:": "66 MiB (2 instances)", + "Stepping:": "4", + "L1d cache:": "1.5 MiB (48 instances)", + "L1i cache:": "1.5 MiB (48 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "46 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", + "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", + "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Core(s) per socket:": "24", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", + "On-line CPU(s) list:": "0,1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41-49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89-95", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88", + "Vulnerability Meltdown:": "Mitigation; PTI", + "Vulnerability Retbleed:": "Mitigation; IBRS", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", + "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": 0, + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0, + "num_wires": 4, + "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", + "witness_compiler": "c++" + }, + { + "circuit_id": "3bc09c20-22e4-443a-b3c1-55ddb5488ed4", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-14T18:00:53.344Z", + "proving_scheme": "groth16", + "status": "Ready", + "compute_time": "P0DT00H00M07.484230S", + "compute_times": { + "total": 7.559012655168772, + "queued": 24.038113, + "clean_up": 0.001834215596318245, + "create_cpp": 0.047222478315234184, + "file_setup": 0.2665374279022217, + "compile_cpp": 4.527841242030263, + "create_r1cs": 0.010656235739588737, + "save_results": 0.005962014198303223, + "get_r1cs_info": 0.0007966365665197372, + "groth16_setup": 1.3851932883262634, + "export_verification_key": 1.3095076736062765, + "download_trusted_setup_file": 0.0028558634221553802 + }, + "file_sizes": { + "total": 225418, + "circuit": 213240, + "total_gb": 0.000225418, + "total_mb": 0.225418, + "circuit.dat": 6176, + "code.tar.gz": 497, + "circuit.zkey": 2580, + "verification_key": 2925 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", + "Model:": "85", + "CPU(s):": "96", + "BogoMIPS:": "5400.00", + "L2 cache:": "48 MiB (48 instances)", + "L3 cache:": "66 MiB (2 instances)", + "Stepping:": "4", + "L1d cache:": "1.5 MiB (48 instances)", + "L1i cache:": "1.5 MiB (48 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "46 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", + "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", + "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Core(s) per socket:": "24", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", + "On-line CPU(s) list:": "0,1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41-49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89-95", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88", + "Vulnerability Meltdown:": "Mitigation; PTI", + "Vulnerability Retbleed:": "Mitigation; IBRS", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", + "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": 0, + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0, + "num_wires": 4, + "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", + "witness_compiler": "c++" + }, + { + "circuit_id": "b16923be-f1f5-4721-b1fe-e77e60c5075c", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-14T18:00:52.361Z", + "proving_scheme": "groth16", + "status": "Ready", + "compute_time": "P0DT00H00M07.613447S", + "compute_times": { + "total": 7.678777739405632, + "queued": 18.390724, + "clean_up": 0.0018066484481096268, + "create_cpp": 0.046223074197769165, + "file_setup": 0.2186940722167492, + "compile_cpp": 4.732459098100662, + "create_r1cs": 0.016505463048815727, + "save_results": 0.005674159154295921, + "get_r1cs_info": 0.0008121822029352188, + "groth16_setup": 1.3473218008875847, + "export_verification_key": 1.3064227681607008, + "download_trusted_setup_file": 0.0024397335946559906 + }, + "file_sizes": { + "total": 225424, + "circuit": 213240, + "total_gb": 0.000225424, + "total_mb": 0.225424, + "circuit.dat": 6176, + "code.tar.gz": 503, + "circuit.zkey": 2580, + "verification_key": 2925 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", + "Model:": "85", + "CPU(s):": "96", + "BogoMIPS:": "5400.00", + "L2 cache:": "48 MiB (48 instances)", + "L3 cache:": "66 MiB (2 instances)", + "Stepping:": "4", + "L1d cache:": "1.5 MiB (48 instances)", + "L1i cache:": "1.5 MiB (48 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "46 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", + "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", + "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Core(s) per socket:": "24", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", + "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", + "Vulnerability Meltdown:": "Mitigation; PTI", + "Vulnerability Retbleed:": "Mitigation; IBRS", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", + "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": 0, + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0, + "num_wires": 4, + "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", + "witness_compiler": "c++" + }, + { + "circuit_id": "85cadabf-0e5d-41ba-8414-9b85a788205a", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-14T18:00:52.036Z", + "proving_scheme": "groth16", + "status": "Ready", + "compute_time": "P0DT00H00M07.728439S", + "compute_times": { + "total": 7.805055180564523, + "queued": 9.804823, + "clean_up": 0.001579929143190384, + "create_cpp": 0.04664304107427597, + "file_setup": 0.2456628568470478, + "compile_cpp": 4.755457693710923, + "create_r1cs": 0.01651918888092041, + "save_results": 0.005783999338746071, + "get_r1cs_info": 0.0008587650954723358, + "groth16_setup": 1.394832018762827, + "export_verification_key": 1.3348707742989063, + "download_trusted_setup_file": 0.0024223458021879196 + }, + "file_sizes": { + "total": 225418, + "circuit": 213240, + "total_gb": 0.000225418, + "total_mb": 0.225418, + "circuit.dat": 6176, + "code.tar.gz": 497, + "circuit.zkey": 2580, + "verification_key": 2925 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", + "Model:": "85", + "CPU(s):": "96", + "BogoMIPS:": "5400.00", + "L2 cache:": "48 MiB (48 instances)", + "L3 cache:": "66 MiB (2 instances)", + "Stepping:": "4", + "L1d cache:": "1.5 MiB (48 instances)", + "L1i cache:": "1.5 MiB (48 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "46 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", + "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", + "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Core(s) per socket:": "24", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", + "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", + "Vulnerability Meltdown:": "Mitigation; PTI", + "Vulnerability Retbleed:": "Mitigation; IBRS", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", + "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": 0, + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0, + "num_wires": 4, + "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", + "witness_compiler": "c++" + }, + { + "circuit_id": "00cf3999-3779-4e65-bd0e-61d6f2fa12c5", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-14T18:00:51.993Z", + "proving_scheme": "groth16", + "status": "Ready", + "compute_time": "P0DT00H00M07.467315S", + "compute_times": { + "total": 7.544081119820476, + "queued": 1.176942, + "clean_up": 0.0019962936639785767, + "create_cpp": 0.05820799432694912, + "file_setup": 0.23373237252235413, + "compile_cpp": 4.640454025939107, + "create_r1cs": 0.010518679395318031, + "save_results": 0.005797773599624634, + "get_r1cs_info": 0.0006531458348035812, + "groth16_setup": 1.3033402767032385, + "export_verification_key": 1.2865915279835463, + "download_trusted_setup_file": 0.0024898946285247803 + }, + "file_sizes": { + "total": 225450, + "circuit": 213240, + "total_gb": 0.00022545, + "total_mb": 0.22545, + "circuit.dat": 6176, + "code.tar.gz": 529, + "circuit.zkey": 2580, + "verification_key": 2925 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tgz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", + "Model:": "85", + "CPU(s):": "96", + "BogoMIPS:": "5400.00", + "L2 cache:": "48 MiB (48 instances)", + "L3 cache:": "66 MiB (2 instances)", + "Stepping:": "4", + "L1d cache:": "1.5 MiB (48 instances)", + "L1i cache:": "1.5 MiB (48 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "46 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", + "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", + "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Core(s) per socket:": "24", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", + "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", + "Vulnerability Meltdown:": "Mitigation; PTI", + "Vulnerability Retbleed:": "Mitigation; IBRS", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", + "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": 0, + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0, + "num_wires": 4, + "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", + "witness_compiler": "c++" + }, + { + "circuit_id": "91708ea2-6a57-4d0f-b439-e615c869eb0c", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-14T18:00:12.640Z", + "proving_scheme": "groth16", + "status": "Ready", + "compute_time": "P0DT00H00M07.566330S", + "compute_times": { + "total": 7.638872114941478, + "queued": 1.083533, + "clean_up": 0.0016686953604221344, + "create_cpp": 0.05361836962401867, + "file_setup": 0.22490951046347618, + "compile_cpp": 4.661991640925407, + "create_r1cs": 0.011098312214016914, + "save_results": 0.005372248589992523, + "get_r1cs_info": 0.0006810426712036133, + "groth16_setup": 1.2943047359585762, + "export_verification_key": 1.3822605535387993, + "download_trusted_setup_file": 0.002469819039106369 + }, + "file_sizes": { + "total": 225418, + "circuit": 213240, + "total_gb": 0.000225418, + "total_mb": 0.225418, + "circuit.dat": 6176, + "code.tar.gz": 497, + "circuit.zkey": 2580, + "verification_key": 2925 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", + "Model:": "85", + "CPU(s):": "96", + "BogoMIPS:": "5400.00", + "L2 cache:": "48 MiB (48 instances)", + "L3 cache:": "66 MiB (2 instances)", + "Stepping:": "4", + "L1d cache:": "1.5 MiB (48 instances)", + "L1i cache:": "1.5 MiB (48 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "46 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", + "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", + "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Core(s) per socket:": "24", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", + "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", + "Vulnerability Meltdown:": "Mitigation; PTI", + "Vulnerability Retbleed:": "Mitigation; IBRS", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", + "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": 0, + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0, + "num_wires": 4, + "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", + "witness_compiler": "c++" + }, + { + "circuit_id": "80695249-80cb-4b30-a607-9a08ce4088aa", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-14T17:58:37.170Z", + "proving_scheme": "groth16", + "status": "Ready", + "compute_time": "P0DT00H00M07.588053S", + "compute_times": { + "total": 7.659883642569184, + "queued": 1.115212, + "clean_up": 0.0017240364104509354, + "create_cpp": 0.05423728749155998, + "file_setup": 0.22653288766741753, + "compile_cpp": 4.715006854385138, + "create_r1cs": 0.01801958493888378, + "save_results": 0.005619559437036514, + "get_r1cs_info": 0.0006584189832210541, + "groth16_setup": 1.3719583936035633, + "export_verification_key": 1.2632665000855923, + "download_trusted_setup_file": 0.0024633388966321945 + }, + "file_sizes": { + "total": 225418, + "circuit": 213240, + "total_gb": 0.000225418, + "total_mb": 0.225418, + "circuit.dat": 6176, + "code.tar.gz": 497, + "circuit.zkey": 2580, + "verification_key": 2925 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", + "Model:": "85", + "CPU(s):": "96", + "BogoMIPS:": "5400.00", + "L2 cache:": "48 MiB (48 instances)", + "L3 cache:": "66 MiB (2 instances)", + "Stepping:": "4", + "L1d cache:": "1.5 MiB (48 instances)", + "L1i cache:": "1.5 MiB (48 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "46 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", + "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", + "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Core(s) per socket:": "24", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", + "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", + "Vulnerability Meltdown:": "Mitigation; PTI", + "Vulnerability Retbleed:": "Mitigation; IBRS", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", + "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": 0, + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0, + "num_wires": 4, + "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", + "witness_compiler": "c++" + }, + { + "circuit_id": "3e14f13a-54bd-4442-b5b7-96e5317e52ed", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-14T17:57:16.314Z", + "proving_scheme": "groth16", + "status": "Ready", + "compute_time": "P0DT00H00M07.363533S", + "compute_times": { + "total": 7.428888592869043, + "queued": 1.09539, + "clean_up": 0.0010978449136018753, + "create_cpp": 0.05030778981745243, + "file_setup": 0.220810754224658, + "compile_cpp": 4.5690462831407785, + "create_r1cs": 0.017519544810056686, + "save_results": 0.0052297115325927734, + "get_r1cs_info": 0.000794650986790657, + "groth16_setup": 1.3148892186582088, + "export_verification_key": 1.246385119855404, + "download_trusted_setup_file": 0.002508854493498802 + }, + "file_sizes": { + "total": 225418, + "circuit": 213240, + "total_gb": 0.000225418, + "total_mb": 0.225418, + "circuit.dat": 6176, + "code.tar.gz": 497, + "circuit.zkey": 2580, + "verification_key": 2925 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", + "Model:": "85", + "CPU(s):": "96", + "BogoMIPS:": "5400.00", + "L2 cache:": "48 MiB (48 instances)", + "L3 cache:": "66 MiB (2 instances)", + "Stepping:": "4", + "L1d cache:": "1.5 MiB (48 instances)", + "L1i cache:": "1.5 MiB (48 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "46 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", + "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", + "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Core(s) per socket:": "24", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", + "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", + "Vulnerability Meltdown:": "Mitigation; PTI", + "Vulnerability Retbleed:": "Mitigation; IBRS", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", + "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": 0, + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0, + "num_wires": 4, + "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", + "witness_compiler": "c++" + }, + { + "circuit_id": "f049037e-e519-40da-a915-67be08cbb857", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-14T17:56:20.673Z", + "proving_scheme": "groth16", + "status": "Ready", + "compute_time": "P0DT00H00M07.554562S", + "compute_times": { + "total": 7.62885358184576, + "queued": 1.122774, + "clean_up": 0.0015935692936182022, + "create_cpp": 0.038827916607260704, + "file_setup": 0.2388095259666443, + "compile_cpp": 4.741127427667379, + "create_r1cs": 0.017170095816254616, + "save_results": 0.005732323974370956, + "get_r1cs_info": 0.0008209142833948135, + "groth16_setup": 1.341518772765994, + "export_verification_key": 1.2402091566473246, + "download_trusted_setup_file": 0.0024810880422592163 + }, + "file_sizes": { + "total": 225418, + "circuit": 213240, + "total_gb": 0.000225418, + "total_mb": 0.225418, + "circuit.dat": 6176, + "code.tar.gz": 497, + "circuit.zkey": 2580, + "verification_key": 2925 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", + "Model:": "85", + "CPU(s):": "96", + "BogoMIPS:": "5400.00", + "L2 cache:": "48 MiB (48 instances)", + "L3 cache:": "66 MiB (2 instances)", + "Stepping:": "4", + "L1d cache:": "1.5 MiB (48 instances)", + "L1i cache:": "1.5 MiB (48 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "46 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", + "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", + "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Core(s) per socket:": "24", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", + "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", + "Vulnerability Meltdown:": "Mitigation; PTI", + "Vulnerability Retbleed:": "Mitigation; IBRS", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", + "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": 0, + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0, + "num_wires": 4, + "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", + "witness_compiler": "c++" + }, + { + "circuit_id": "c6b7c7c4-a68c-4c52-a44d-c430303e9c83", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-14T17:56:06.666Z", + "proving_scheme": "groth16", + "status": "Ready", + "compute_time": "P0DT00H00M07.640262S", + "compute_times": { + "total": 7.717317624017596, + "queued": 1.153472, + "clean_up": 0.001708121970295906, + "create_cpp": 0.055834874510765076, + "file_setup": 0.26282420568168163, + "compile_cpp": 4.616852128878236, + "create_r1cs": 0.01816796325147152, + "save_results": 0.005182689055800438, + "get_r1cs_info": 0.0008097067475318909, + "groth16_setup": 1.4200150053948164, + "export_verification_key": 1.3325735349208117, + "download_trusted_setup_file": 0.0028655603528022766 + }, + "file_sizes": { + "total": 225418, + "circuit": 213240, + "total_gb": 0.000225418, + "total_mb": 0.225418, + "circuit.dat": 6176, + "code.tar.gz": 497, + "circuit.zkey": 2580, + "verification_key": 2925 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", + "Model:": "85", + "CPU(s):": "96", + "BogoMIPS:": "5400.00", + "L2 cache:": "48 MiB (48 instances)", + "L3 cache:": "66 MiB (2 instances)", + "Stepping:": "4", + "L1d cache:": "1.5 MiB (48 instances)", + "L1i cache:": "1.5 MiB (48 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "46 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", + "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", + "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Core(s) per socket:": "24", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", + "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", + "Vulnerability Meltdown:": "Mitigation; PTI", + "Vulnerability Retbleed:": "Mitigation; IBRS", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", + "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": 0, + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0, + "num_wires": 4, + "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", + "witness_compiler": "c++" + }, + { + "circuit_id": "7ce11338-e787-4c30-872e-4994cf25cd21", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-14T17:55:47.449Z", + "proving_scheme": "groth16", + "status": "Ready", + "compute_time": "P0DT00H00M07.649332S", + "compute_times": { + "total": 7.72703692317009, + "queued": 1.083808, + "clean_up": 0.0017609763890504837, + "create_cpp": 0.055810270830988884, + "file_setup": 0.23338888958096504, + "compile_cpp": 4.682565299794078, + "create_r1cs": 0.017131242901086807, + "save_results": 0.005780013278126717, + "get_r1cs_info": 0.0008372049778699875, + "groth16_setup": 1.321879891678691, + "export_verification_key": 1.4050091002136469, + "download_trusted_setup_file": 0.0024436842650175095 + }, + "file_sizes": { + "total": 225418, + "circuit": 213240, + "total_gb": 0.000225418, + "total_mb": 0.225418, + "circuit.dat": 6176, + "code.tar.gz": 497, + "circuit.zkey": 2580, + "verification_key": 2925 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", + "Model:": "85", + "CPU(s):": "96", + "BogoMIPS:": "5400.00", + "L2 cache:": "48 MiB (48 instances)", + "L3 cache:": "66 MiB (2 instances)", + "Stepping:": "4", + "L1d cache:": "1.5 MiB (48 instances)", + "L1i cache:": "1.5 MiB (48 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "46 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", + "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", + "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Core(s) per socket:": "24", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", + "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", + "Vulnerability Meltdown:": "Mitigation; PTI", + "Vulnerability Retbleed:": "Mitigation; IBRS", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", + "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": 0, + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0, + "num_wires": 4, + "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", + "witness_compiler": "c++" + }, + { + "circuit_id": "21b7b98f-ac89-4036-984a-9b7d76c8246e", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-14T17:54:57.998Z", + "proving_scheme": "groth16", + "status": "Ready", + "compute_time": "P0DT00H00M07.709162S", + "compute_times": { + "total": 7.77805152349174, + "queued": 1.14492, + "clean_up": 0.0016839038580656052, + "create_cpp": 0.04769276827573776, + "file_setup": 0.24134804122149944, + "compile_cpp": 4.741177011281252, + "create_r1cs": 0.01839756965637207, + "save_results": 0.00636446475982666, + "get_r1cs_info": 0.0007227305322885513, + "groth16_setup": 1.3326963353902102, + "export_verification_key": 1.3850416559726, + "download_trusted_setup_file": 0.0024724528193473816 + }, + "file_sizes": { + "total": 225418, + "circuit": 213240, + "total_gb": 0.000225418, + "total_mb": 0.225418, + "circuit.dat": 6176, + "code.tar.gz": 497, + "circuit.zkey": 2580, + "verification_key": 2925 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", + "Model:": "85", + "CPU(s):": "96", + "BogoMIPS:": "5400.00", + "L2 cache:": "48 MiB (48 instances)", + "L3 cache:": "66 MiB (2 instances)", + "Stepping:": "4", + "L1d cache:": "1.5 MiB (48 instances)", + "L1i cache:": "1.5 MiB (48 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "46 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", + "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", + "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Core(s) per socket:": "24", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", + "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", + "Vulnerability Meltdown:": "Mitigation; PTI", + "Vulnerability Retbleed:": "Mitigation; IBRS", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", + "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": 0, + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0, + "num_wires": 4, + "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", + "witness_compiler": "c++" + }, + { + "circuit_id": "1ea845af-4477-4887-b4c9-1fc60922c64a", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-14T17:54:16.166Z", + "proving_scheme": "groth16", + "status": "Ready", + "compute_time": "P0DT00H00M07.418977S", + "compute_times": { + "total": 7.494983484968543, + "queued": 1.149669, + "clean_up": 0.0016745738685131073, + "create_cpp": 0.05047656036913395, + "file_setup": 0.2317434661090374, + "compile_cpp": 4.548192359507084, + "create_r1cs": 0.01588592678308487, + "save_results": 0.0058114491403102875, + "get_r1cs_info": 0.0006539300084114075, + "groth16_setup": 1.359997482970357, + "export_verification_key": 1.2780188340693712, + "download_trusted_setup_file": 0.0020805764943361282 + }, + "file_sizes": { + "total": 225418, + "circuit": 213240, + "total_gb": 0.000225418, + "total_mb": 0.225418, + "circuit.dat": 6176, + "code.tar.gz": 497, + "circuit.zkey": 2580, + "verification_key": 2925 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", + "Model:": "85", + "CPU(s):": "96", + "BogoMIPS:": "5400.00", + "L2 cache:": "48 MiB (48 instances)", + "L3 cache:": "66 MiB (2 instances)", + "Stepping:": "4", + "L1d cache:": "1.5 MiB (48 instances)", + "L1i cache:": "1.5 MiB (48 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "46 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", + "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", + "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Core(s) per socket:": "24", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", + "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", + "Vulnerability Meltdown:": "Mitigation; PTI", + "Vulnerability Retbleed:": "Mitigation; IBRS", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", + "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": 0, + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0, + "num_wires": 4, + "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", + "witness_compiler": "c++" + }, + { + "circuit_id": "ae8e8612-b57b-484a-992b-a2e9077ded25", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-14T17:53:57.024Z", + "proving_scheme": "groth16", + "status": "Ready", + "compute_time": "P0DT00H00M07.568414S", + "compute_times": { + "total": 7.645044168457389, + "queued": 1.146369, + "clean_up": 0.0016998127102851868, + "create_cpp": 0.051619796082377434, + "file_setup": 0.24771465547382832, + "compile_cpp": 4.563909590244293, + "create_r1cs": 0.017467238008975983, + "save_results": 0.0046049561351537704, + "get_r1cs_info": 0.0007205326110124588, + "groth16_setup": 1.392288465052843, + "export_verification_key": 1.3620477262884378, + "download_trusted_setup_file": 0.0024884194135665894 + }, + "file_sizes": { + "total": 225418, + "circuit": 213240, + "total_gb": 0.000225418, + "total_mb": 0.225418, + "circuit.dat": 6176, + "code.tar.gz": 497, + "circuit.zkey": 2580, + "verification_key": 2925 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", + "Model:": "85", + "CPU(s):": "96", + "BogoMIPS:": "5400.00", + "L2 cache:": "48 MiB (48 instances)", + "L3 cache:": "66 MiB (2 instances)", + "Stepping:": "4", + "L1d cache:": "1.5 MiB (48 instances)", + "L1i cache:": "1.5 MiB (48 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "46 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", + "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", + "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Core(s) per socket:": "24", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", + "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", + "Vulnerability Meltdown:": "Mitigation; PTI", + "Vulnerability Retbleed:": "Mitigation; IBRS", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", + "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": 0, + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0, + "num_wires": 4, + "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", + "witness_compiler": "c++" + }, + { + "circuit_id": "f2be0b1e-405f-4793-82eb-31ae4233e9b6", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-14T17:48:07.274Z", + "proving_scheme": "groth16", + "status": "Ready", + "compute_time": "P0DT00H00M07.634375S", + "compute_times": { + "total": 7.711648900061846, + "queued": 1.151518, + "clean_up": 0.0016132276505231857, + "create_cpp": 0.051139988005161285, + "file_setup": 0.23978900723159313, + "compile_cpp": 4.6589622385799885, + "create_r1cs": 0.010407604277133942, + "save_results": 0.0053712837398052216, + "get_r1cs_info": 0.0006775856018066406, + "groth16_setup": 1.376387370750308, + "export_verification_key": 1.364480024203658, + "download_trusted_setup_file": 0.0024138204753398895 + }, + "file_sizes": { + "total": 225418, + "circuit": 213240, + "total_gb": 0.000225418, + "total_mb": 0.225418, + "circuit.dat": 6176, + "code.tar.gz": 497, + "circuit.zkey": 2580, + "verification_key": 2925 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", + "Model:": "85", + "CPU(s):": "96", + "BogoMIPS:": "5400.00", + "L2 cache:": "48 MiB (48 instances)", + "L3 cache:": "66 MiB (2 instances)", + "Stepping:": "4", + "L1d cache:": "1.5 MiB (48 instances)", + "L1i cache:": "1.5 MiB (48 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "46 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", + "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", + "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Core(s) per socket:": "24", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", + "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", + "Vulnerability Meltdown:": "Mitigation; PTI", + "Vulnerability Retbleed:": "Mitigation; IBRS", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", + "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": 0, + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0, + "num_wires": 4, + "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", + "witness_compiler": "c++" + }, + { + "circuit_id": "65318a49-b41d-4ff8-897a-1cdebf6379cd", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-14T17:46:27.705Z", + "proving_scheme": "groth16", + "status": "Ready", + "compute_time": "P0DT00H00M07.794943S", + "compute_times": { + "total": 7.869940539821982, + "queued": 1.12935, + "clean_up": 0.001537129282951355, + "create_cpp": 0.046995386481285095, + "file_setup": 0.24573437683284283, + "compile_cpp": 4.844812747091055, + "create_r1cs": 0.010960787534713745, + "save_results": 0.00475454144179821, + "get_r1cs_info": 0.0004996396601200104, + "groth16_setup": 1.4448041189461946, + "export_verification_key": 1.2678779624402523, + "download_trusted_setup_file": 0.0016316790133714676 + }, + "file_sizes": { + "total": 225418, + "circuit": 213240, + "total_gb": 0.000225418, + "total_mb": 0.225418, + "circuit.dat": 6176, + "code.tar.gz": 497, + "circuit.zkey": 2580, + "verification_key": 2925 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", + "Model:": "85", + "CPU(s):": "96", + "BogoMIPS:": "5400.00", + "L2 cache:": "48 MiB (48 instances)", + "L3 cache:": "66 MiB (2 instances)", + "Stepping:": "4", + "L1d cache:": "1.5 MiB (48 instances)", + "L1i cache:": "1.5 MiB (48 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "46 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", + "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", + "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Core(s) per socket:": "24", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", + "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", + "Vulnerability Meltdown:": "Mitigation; PTI", + "Vulnerability Retbleed:": "Mitigation; IBRS", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", + "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": 0, + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0, + "num_wires": 4, + "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", + "witness_compiler": "c++" + }, + { + "circuit_id": "2c7b1bf7-070e-4c11-a948-0f02bf06248a", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-14T17:40:38.978Z", + "proving_scheme": "groth16", + "status": "Ready", + "compute_time": "P0DT00H00M07.664033S", + "compute_times": { + "total": 7.736426949501038, + "queued": 1.136515, + "clean_up": 0.001613633707165718, + "create_cpp": 0.04840335436165333, + "file_setup": 0.22559695690870285, + "compile_cpp": 4.761518849059939, + "create_r1cs": 0.01633301004767418, + "save_results": 0.0055974628776311874, + "get_r1cs_info": 0.0007108338177204132, + "groth16_setup": 1.3652087282389402, + "export_verification_key": 1.308535685762763, + "download_trusted_setup_file": 0.0024619195610284805 + }, + "file_sizes": { + "total": 225418, + "circuit": 213240, + "total_gb": 0.000225418, + "total_mb": 0.225418, + "circuit.dat": 6176, + "code.tar.gz": 497, + "circuit.zkey": 2580, + "verification_key": 2925 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", + "Model:": "85", + "CPU(s):": "96", + "BogoMIPS:": "5400.00", + "L2 cache:": "48 MiB (48 instances)", + "L3 cache:": "66 MiB (2 instances)", + "Stepping:": "4", + "L1d cache:": "1.5 MiB (48 instances)", + "L1i cache:": "1.5 MiB (48 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "46 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", + "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", + "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Core(s) per socket:": "24", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", + "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", + "Vulnerability Meltdown:": "Mitigation; PTI", + "Vulnerability Retbleed:": "Mitigation; IBRS", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", + "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": 0, + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0, + "num_wires": 4, + "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", + "witness_compiler": "c++" + }, + { + "circuit_id": "87fdc20a-7e4b-4244-931d-ab5548da9644", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-14T17:40:08.434Z", + "proving_scheme": "groth16", + "status": "Ready", + "compute_time": "P0DT00H00M07.326295S", + "compute_times": { + "total": 7.400858150795102, + "queued": 1.118441, + "clean_up": 0.0016694236546754837, + "create_cpp": 0.04726249352097511, + "file_setup": 0.22566148824989796, + "compile_cpp": 4.567545756697655, + "create_r1cs": 0.01814442314207554, + "save_results": 0.005112992599606514, + "get_r1cs_info": 0.0006955582648515701, + "groth16_setup": 1.211182564496994, + "export_verification_key": 1.3208420500159264, + "download_trusted_setup_file": 0.002416292205452919 + }, + "file_sizes": { + "total": 225418, + "circuit": 213240, + "total_gb": 0.000225418, + "total_mb": 0.225418, + "circuit.dat": 6176, + "code.tar.gz": 497, + "circuit.zkey": 2580, + "verification_key": 2925 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", + "Model:": "85", + "CPU(s):": "96", + "BogoMIPS:": "5400.00", + "L2 cache:": "48 MiB (48 instances)", + "L3 cache:": "66 MiB (2 instances)", + "Stepping:": "4", + "L1d cache:": "1.5 MiB (48 instances)", + "L1i cache:": "1.5 MiB (48 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "46 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", + "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", + "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Core(s) per socket:": "24", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", + "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", + "Vulnerability Meltdown:": "Mitigation; PTI", + "Vulnerability Retbleed:": "Mitigation; IBRS", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", + "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": 0, + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0, + "num_wires": 4, + "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", + "witness_compiler": "c++" + }, + { + "circuit_id": "48fa4f1d-8be2-4377-b0a3-e847a4c9d0b4", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-14T17:39:39.153Z", + "proving_scheme": "groth16", + "status": "Ready", + "compute_time": "P0DT00H00M07.594315S", + "compute_times": { + "total": 7.668981021270156, + "queued": 14.286631, + "clean_up": 0.001645909622311592, + "create_cpp": 0.04893757589161396, + "file_setup": 0.2278295625001192, + "compile_cpp": 4.749169761314988, + "create_r1cs": 0.018283158540725708, + "save_results": 0.00601276196539402, + "get_r1cs_info": 0.0007984023541212082, + "groth16_setup": 1.3189964778721333, + "export_verification_key": 1.2939927615225315, + "download_trusted_setup_file": 0.0029653161764144897 + }, + "file_sizes": { + "total": 225418, + "circuit": 213240, + "total_gb": 0.000225418, + "total_mb": 0.225418, + "circuit.dat": 6176, + "code.tar.gz": 497, + "circuit.zkey": 2580, + "verification_key": 2925 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", + "Model:": "85", + "CPU(s):": "96", + "BogoMIPS:": "5400.00", + "L2 cache:": "48 MiB (48 instances)", + "L3 cache:": "66 MiB (2 instances)", + "Stepping:": "4", + "L1d cache:": "1.5 MiB (48 instances)", + "L1i cache:": "1.5 MiB (48 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "46 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", + "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", + "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Core(s) per socket:": "24", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", + "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", + "Vulnerability Meltdown:": "Mitigation; PTI", + "Vulnerability Retbleed:": "Mitigation; IBRS", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", + "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": 0, + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0, + "num_wires": 4, + "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", + "witness_compiler": "c++" + }, + { + "circuit_id": "3719aee6-7aa8-443b-9ccd-c6dd06bc0947", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-14T16:57:38.604Z", + "proving_scheme": "groth16", + "status": "Ready", + "compute_time": "P0DT00H00M07.483459S", + "compute_times": { + "total": 7.563022721558809, + "queued": 17.659509, + "clean_up": 0.0018138419836759567, + "create_cpp": 0.04657592810690403, + "file_setup": 0.25030036829411983, + "compile_cpp": 4.458605896681547, + "create_r1cs": 0.010267989709973335, + "save_results": 0.006375599652528763, + "get_r1cs_info": 0.0003939960151910782, + "groth16_setup": 1.3946119882166386, + "export_verification_key": 1.3923067282885313, + "download_trusted_setup_file": 0.0011770892888307571 + }, + "file_sizes": { + "total": 225418, + "circuit": 213240, + "total_gb": 0.000225418, + "total_mb": 0.225418, + "circuit.dat": 6176, + "code.tar.gz": 497, + "circuit.zkey": 2580, + "verification_key": 2925 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", + "Model:": "85", + "CPU(s):": "96", + "BogoMIPS:": "5400.00", + "L2 cache:": "48 MiB (48 instances)", + "L3 cache:": "66 MiB (2 instances)", + "Stepping:": "4", + "L1d cache:": "1.5 MiB (48 instances)", + "L1i cache:": "1.5 MiB (48 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "46 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", + "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", + "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Core(s) per socket:": "24", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", + "On-line CPU(s) list:": "0,1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41-49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89-95", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88", + "Vulnerability Meltdown:": "Mitigation; PTI", + "Vulnerability Retbleed:": "Mitigation; IBRS", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", + "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": 0, + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0, + "num_wires": 4, + "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", + "witness_compiler": "c++" + }, + { + "circuit_id": "fdaa2dd0-a1ed-4313-ad5b-bd23d130fb47", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-14T16:57:37.752Z", + "proving_scheme": "groth16", + "status": "Ready", + "compute_time": "P0DT00H00M07.576781S", + "compute_times": { + "total": 7.655046196654439, + "queued": 18.143709, + "clean_up": 0.0016271453350782394, + "create_cpp": 0.052942270413041115, + "file_setup": 0.23309797048568726, + "compile_cpp": 4.72314483858645, + "create_r1cs": 0.01772555708885193, + "save_results": 0.00583222322165966, + "get_r1cs_info": 0.0007539559155702591, + "groth16_setup": 1.292042575776577, + "export_verification_key": 1.3249626532196999, + "download_trusted_setup_file": 0.002419590950012207 + }, + "file_sizes": { + "total": 225424, + "circuit": 213240, + "total_gb": 0.000225424, + "total_mb": 0.225424, + "circuit.dat": 6176, + "code.tar.gz": 503, + "circuit.zkey": 2580, + "verification_key": 2925 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", + "Model:": "85", + "CPU(s):": "96", + "BogoMIPS:": "5400.00", + "L2 cache:": "48 MiB (48 instances)", + "L3 cache:": "66 MiB (2 instances)", + "Stepping:": "4", + "L1d cache:": "1.5 MiB (48 instances)", + "L1i cache:": "1.5 MiB (48 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "46 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", + "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", + "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Core(s) per socket:": "24", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", + "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", + "Vulnerability Meltdown:": "Mitigation; PTI", + "Vulnerability Retbleed:": "Mitigation; IBRS", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", + "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": 0, + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0, + "num_wires": 4, + "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", + "witness_compiler": "c++" + }, + { + "circuit_id": "3f8e4d03-69b6-43c8-93c1-d447edf67b35", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-14T16:57:37.266Z", + "proving_scheme": "groth16", + "status": "Ready", + "compute_time": "P0DT00H00M07.236164S", + "compute_times": { + "total": 7.311267904937267, + "queued": 1.155332, + "clean_up": 0.0008716173470020294, + "create_cpp": 0.05489862523972988, + "file_setup": 0.2424852568656206, + "compile_cpp": 4.473982494324446, + "create_r1cs": 0.01902007684111595, + "save_results": 0.005060611292719841, + "get_r1cs_info": 0.00068698450922966, + "groth16_setup": 1.2233653031289577, + "export_verification_key": 1.2878586202859879, + "download_trusted_setup_file": 0.002506690099835396 + }, + "file_sizes": { + "total": 225418, + "circuit": 213240, + "total_gb": 0.000225418, + "total_mb": 0.225418, + "circuit.dat": 6176, + "code.tar.gz": 497, + "circuit.zkey": 2580, + "verification_key": 2925 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", + "Model:": "85", + "CPU(s):": "96", + "BogoMIPS:": "5400.00", + "L2 cache:": "48 MiB (48 instances)", + "L3 cache:": "66 MiB (2 instances)", + "Stepping:": "4", + "L1d cache:": "1.5 MiB (48 instances)", + "L1i cache:": "1.5 MiB (48 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "46 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", + "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", + "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Core(s) per socket:": "24", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", + "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", + "Vulnerability Meltdown:": "Mitigation; PTI", + "Vulnerability Retbleed:": "Mitigation; IBRS", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", + "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": 0, + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0, + "num_wires": 4, + "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", + "witness_compiler": "c++" + }, + { + "circuit_id": "c55e85d0-37b5-4821-b205-f033b2bb85a9", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-14T16:57:37.258Z", + "proving_scheme": "groth16", + "status": "Ready", + "compute_time": "P0DT00H00M07.909980S", + "compute_times": { + "total": 7.98988794349134, + "queued": 9.595895, + "clean_up": 0.0014979057013988495, + "create_cpp": 0.056887710466980934, + "file_setup": 0.2363742906600237, + "compile_cpp": 4.887871127575636, + "create_r1cs": 0.016758300364017487, + "save_results": 0.00578792579472065, + "get_r1cs_info": 0.000655466690659523, + "groth16_setup": 1.3654928021132946, + "export_verification_key": 1.4161598179489374, + "download_trusted_setup_file": 0.00191524438560009 + }, + "file_sizes": { + "total": 225450, + "circuit": 213240, + "total_gb": 0.00022545, + "total_mb": 0.22545, + "circuit.dat": 6176, + "code.tar.gz": 529, + "circuit.zkey": 2580, + "verification_key": 2925 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tgz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", + "Model:": "85", + "CPU(s):": "96", + "BogoMIPS:": "5400.00", + "L2 cache:": "48 MiB (48 instances)", + "L3 cache:": "66 MiB (2 instances)", + "Stepping:": "4", + "L1d cache:": "1.5 MiB (48 instances)", + "L1i cache:": "1.5 MiB (48 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "46 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", + "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", + "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Core(s) per socket:": "24", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", + "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", + "Vulnerability Meltdown:": "Mitigation; PTI", + "Vulnerability Retbleed:": "Mitigation; IBRS", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", + "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": 0, + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0, + "num_wires": 4, + "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", + "witness_compiler": "c++" + }, + { + "circuit_id": "6a61d82c-84e8-4c6b-9cbc-afa59a3dd297", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-14T16:50:20.025Z", + "proving_scheme": "groth16", + "status": "Ready", + "compute_time": "P0DT00H00M07.851374S", + "compute_times": { + "total": 7.936480965465307, + "queued": 1.058339, + "clean_up": 0.001843426376581192, + "create_cpp": 0.04711670242249966, + "file_setup": 0.2590673416852951, + "compile_cpp": 4.6749470960348845, + "create_r1cs": 0.011059625074267387, + "save_results": 0.006622841581702232, + "get_r1cs_info": 0.0006548557430505753, + "groth16_setup": 1.4773112516850233, + "export_verification_key": 1.4550056345760822, + "download_trusted_setup_file": 0.002507215365767479 + }, + "file_sizes": { + "total": 225418, + "circuit": 213240, + "total_gb": 0.000225418, + "total_mb": 0.225418, + "circuit.dat": 6176, + "code.tar.gz": 497, + "circuit.zkey": 2580, + "verification_key": 2925 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", + "Model:": "85", + "CPU(s):": "96", + "BogoMIPS:": "5400.00", + "L2 cache:": "48 MiB (48 instances)", + "L3 cache:": "66 MiB (2 instances)", + "Stepping:": "4", + "L1d cache:": "1.5 MiB (48 instances)", + "L1i cache:": "1.5 MiB (48 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "46 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", + "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", + "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Core(s) per socket:": "24", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", + "On-line CPU(s) list:": "0,1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41-49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89-95", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88", + "Vulnerability Meltdown:": "Mitigation; PTI", + "Vulnerability Retbleed:": "Mitigation; IBRS", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", + "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": 0, + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0, + "num_wires": 4, + "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", + "witness_compiler": "c++" + }, + { + "circuit_id": "f076d1e9-1221-4e4f-b93a-5d1a65e70f91", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-14T16:50:18.711Z", + "proving_scheme": "groth16", + "status": "Ready", + "compute_time": "P0DT00H00M07.671909S", + "compute_times": { + "total": 7.752114692702889, + "queued": 1.120105, + "clean_up": 0.0017052926123142242, + "create_cpp": 0.0554554108530283, + "file_setup": 0.254299521446228, + "compile_cpp": 4.53538416698575, + "create_r1cs": 0.019296107813715935, + "save_results": 0.005684012547135353, + "get_r1cs_info": 0.000739341601729393, + "groth16_setup": 1.4482497554272413, + "export_verification_key": 1.4276448003947735, + "download_trusted_setup_file": 0.0031732507050037384 + }, + "file_sizes": { + "total": 225450, + "circuit": 213240, + "total_gb": 0.00022545, + "total_mb": 0.22545, + "circuit.dat": 6176, + "code.tar.gz": 529, + "circuit.zkey": 2580, + "verification_key": 2925 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tgz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", + "Model:": "85", + "CPU(s):": "96", + "BogoMIPS:": "5400.00", + "L2 cache:": "48 MiB (48 instances)", + "L3 cache:": "66 MiB (2 instances)", + "Stepping:": "4", + "L1d cache:": "1.5 MiB (48 instances)", + "L1i cache:": "1.5 MiB (48 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "46 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", + "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", + "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Core(s) per socket:": "24", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", + "On-line CPU(s) list:": "0,1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41-49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89-95", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88", + "Vulnerability Meltdown:": "Mitigation; PTI", + "Vulnerability Retbleed:": "Mitigation; IBRS", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", + "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": 0, + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0, + "num_wires": 4, + "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", + "witness_compiler": "c++" + }, + { + "circuit_id": "3ac018ab-21c3-4149-9bec-ae77a8fb49ab", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-14T16:50:18.680Z", + "proving_scheme": "groth16", + "status": "Ready", + "compute_time": "P0DT00H00M07.682966S", + "compute_times": { + "total": 7.775568487122655, + "queued": 1.374417, + "clean_up": 0.0017570890486240387, + "create_cpp": 0.04991978965699673, + "file_setup": 0.2661570589989424, + "compile_cpp": 4.481879696249962, + "create_r1cs": 0.017130015417933464, + "save_results": 0.005561588332056999, + "get_r1cs_info": 0.0007625855505466461, + "groth16_setup": 1.442964818328619, + "export_verification_key": 1.5065135695040226, + "download_trusted_setup_file": 0.00246431864798069 + }, + "file_sizes": { + "total": 225418, + "circuit": 213240, + "total_gb": 0.000225418, + "total_mb": 0.225418, + "circuit.dat": 6176, + "code.tar.gz": 497, + "circuit.zkey": 2580, + "verification_key": 2925 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", + "Model:": "85", + "CPU(s):": "96", + "BogoMIPS:": "5400.00", + "L2 cache:": "48 MiB (48 instances)", + "L3 cache:": "66 MiB (2 instances)", + "Stepping:": "4", + "L1d cache:": "1.5 MiB (48 instances)", + "L1i cache:": "1.5 MiB (48 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "46 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", + "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", + "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Core(s) per socket:": "24", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", + "On-line CPU(s) list:": "0,1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41-49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89-95", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88", + "Vulnerability Meltdown:": "Mitigation; PTI", + "Vulnerability Retbleed:": "Mitigation; IBRS", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", + "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": 0, + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0, + "num_wires": 4, + "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", + "witness_compiler": "c++" + }, + { + "circuit_id": "ce96ccac-95af-43a0-a81e-cd23e9068d37", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-14T16:50:18.623Z", + "proving_scheme": "groth16", + "status": "Ready", + "compute_time": "P0DT00H00M07.668288S", + "compute_times": { + "total": 7.74694580771029, + "queued": 1.160826, + "clean_up": 0.0016458947211503983, + "create_cpp": 0.05009524151682854, + "file_setup": 0.27001221664249897, + "compile_cpp": 4.7398079466074705, + "create_r1cs": 0.01706443540751934, + "save_results": 0.0056135449558496475, + "get_r1cs_info": 0.0006729774177074432, + "groth16_setup": 1.340934656560421, + "export_verification_key": 1.3180796634405851, + "download_trusted_setup_file": 0.002530023455619812 + }, + "file_sizes": { + "total": 225424, + "circuit": 213240, + "total_gb": 0.000225424, + "total_mb": 0.225424, + "circuit.dat": 6176, + "code.tar.gz": 503, + "circuit.zkey": 2580, + "verification_key": 2925 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", + "Model:": "85", + "CPU(s):": "96", + "BogoMIPS:": "5400.00", + "L2 cache:": "48 MiB (48 instances)", + "L3 cache:": "66 MiB (2 instances)", + "Stepping:": "4", + "L1d cache:": "1.5 MiB (48 instances)", + "L1i cache:": "1.5 MiB (48 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "46 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", + "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", + "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Core(s) per socket:": "24", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", + "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", + "Vulnerability Meltdown:": "Mitigation; PTI", + "Vulnerability Retbleed:": "Mitigation; IBRS", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", + "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": 0, + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0, + "num_wires": 4, + "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", + "witness_compiler": "c++" + }, + { + "circuit_id": "d2151d0c-5dcb-49ae-b451-f763b9fb0830", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-14T16:49:27.765Z", + "proving_scheme": "groth16", + "status": "Ready", + "compute_time": "P0DT00H00M07.710537S", + "compute_times": { + "total": 7.809466190636158, + "queued": 1.098008, + "clean_up": 0.001737702637910843, + "create_cpp": 0.048770468682050705, + "file_setup": 0.2964275795966387, + "compile_cpp": 4.62178766913712, + "create_r1cs": 0.016994547098875046, + "save_results": 0.005755074322223663, + "get_r1cs_info": 0.000483684241771698, + "groth16_setup": 1.4868505895137787, + "export_verification_key": 1.328504517674446, + "download_trusted_setup_file": 0.001583334058523178 + }, + "file_sizes": { + "total": 225418, + "circuit": 213240, + "total_gb": 0.000225418, + "total_mb": 0.225418, + "circuit.dat": 6176, + "code.tar.gz": 497, + "circuit.zkey": 2580, + "verification_key": 2925 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", + "Model:": "85", + "CPU(s):": "96", + "BogoMIPS:": "5400.00", + "L2 cache:": "48 MiB (48 instances)", + "L3 cache:": "66 MiB (2 instances)", + "Stepping:": "4", + "L1d cache:": "1.5 MiB (48 instances)", + "L1i cache:": "1.5 MiB (48 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "46 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", + "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", + "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Core(s) per socket:": "24", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", + "On-line CPU(s) list:": "0,1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41-49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89-95", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88", + "Vulnerability Meltdown:": "Mitigation; PTI", + "Vulnerability Retbleed:": "Mitigation; IBRS", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", + "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": 0, + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0, + "num_wires": 4, + "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", + "witness_compiler": "c++" + }, + { + "circuit_id": "4b8bd698-0ec8-4a3c-b054-dc94702908b8", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-14T16:49:26.693Z", + "proving_scheme": "groth16", + "status": "Ready", + "compute_time": "P0DT00H00M07.874326S", + "compute_times": { + "total": 7.964226454496384, + "queued": 1.179343, + "clean_up": 0.0016873739659786224, + "create_cpp": 0.049062516540288925, + "file_setup": 0.26052811928093433, + "compile_cpp": 4.61213406175375, + "create_r1cs": 0.018942877650260925, + "save_results": 0.006677566096186638, + "get_r1cs_info": 0.0005794204771518707, + "groth16_setup": 1.48171117156744, + "export_verification_key": 1.5311051458120346, + "download_trusted_setup_file": 0.0014842581003904343 + }, + "file_sizes": { + "total": 225424, + "circuit": 213240, + "total_gb": 0.000225424, + "total_mb": 0.225424, + "circuit.dat": 6176, + "code.tar.gz": 503, + "circuit.zkey": 2580, + "verification_key": 2925 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", + "Model:": "85", + "CPU(s):": "96", + "BogoMIPS:": "5400.00", + "L2 cache:": "48 MiB (48 instances)", + "L3 cache:": "66 MiB (2 instances)", + "Stepping:": "4", + "L1d cache:": "1.5 MiB (48 instances)", + "L1i cache:": "1.5 MiB (48 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "46 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", + "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", + "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Core(s) per socket:": "24", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", + "On-line CPU(s) list:": "0,1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41-49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89-95", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88", + "Vulnerability Meltdown:": "Mitigation; PTI", + "Vulnerability Retbleed:": "Mitigation; IBRS", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", + "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": 0, + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0, + "num_wires": 4, + "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", + "witness_compiler": "c++" + }, + { + "circuit_id": "155b4b85-b7ae-4f95-a4ed-4147a7de7fe6", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-14T16:49:26.383Z", + "proving_scheme": "groth16", + "status": "Ready", + "compute_time": "P0DT00H00M07.749949S", + "compute_times": { + "total": 7.829013995826244, + "queued": 1.142999, + "clean_up": 0.0008353088051080704, + "create_cpp": 0.053893035277724266, + "file_setup": 0.24244733341038227, + "compile_cpp": 4.61862338334322, + "create_r1cs": 0.015483187511563301, + "save_results": 0.004380660131573677, + "get_r1cs_info": 0.0006992518901824951, + "groth16_setup": 1.4251426942646503, + "export_verification_key": 1.4645712282508612, + "download_trusted_setup_file": 0.0024489928036928177 + }, + "file_sizes": { + "total": 225418, + "circuit": 213240, + "total_gb": 0.000225418, + "total_mb": 0.225418, + "circuit.dat": 6176, + "code.tar.gz": 497, + "circuit.zkey": 2580, + "verification_key": 2925 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", + "Model:": "85", + "CPU(s):": "96", + "BogoMIPS:": "5400.00", + "L2 cache:": "48 MiB (48 instances)", + "L3 cache:": "66 MiB (2 instances)", + "Stepping:": "4", + "L1d cache:": "1.5 MiB (48 instances)", + "L1i cache:": "1.5 MiB (48 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "46 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", + "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", + "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Core(s) per socket:": "24", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", + "On-line CPU(s) list:": "0,1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41-49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89-95", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88", + "Vulnerability Meltdown:": "Mitigation; PTI", + "Vulnerability Retbleed:": "Mitigation; IBRS", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", + "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": 0, + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0, + "num_wires": 4, + "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", + "witness_compiler": "c++" + }, + { + "circuit_id": "413361ac-bcaa-4057-85e6-479dc0e9deba", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-14T16:49:26.324Z", + "proving_scheme": "groth16", + "status": "Ready", + "compute_time": "P0DT00H00M07.642788S", + "compute_times": { + "total": 7.720644621178508, + "queued": 1.162661, + "clean_up": 0.0008935760706663132, + "create_cpp": 0.05431099981069565, + "file_setup": 0.2567560989409685, + "compile_cpp": 4.618247997015715, + "create_r1cs": 0.01814628764986992, + "save_results": 0.0049981530755758286, + "get_r1cs_info": 0.0009683482348918915, + "groth16_setup": 1.4208254627883434, + "export_verification_key": 1.342044984921813, + "download_trusted_setup_file": 0.002907775342464447 + }, + "file_sizes": { + "total": 225450, + "circuit": 213240, + "total_gb": 0.00022545, + "total_mb": 0.22545, + "circuit.dat": 6176, + "code.tar.gz": 529, + "circuit.zkey": 2580, + "verification_key": 2925 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tgz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", + "Model:": "85", + "CPU(s):": "96", + "BogoMIPS:": "5400.00", + "L2 cache:": "48 MiB (48 instances)", + "L3 cache:": "66 MiB (2 instances)", + "Stepping:": "4", + "L1d cache:": "1.5 MiB (48 instances)", + "L1i cache:": "1.5 MiB (48 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "46 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", + "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", + "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Core(s) per socket:": "24", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", + "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", + "Vulnerability Meltdown:": "Mitigation; PTI", + "Vulnerability Retbleed:": "Mitigation; IBRS", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", + "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": 0, + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0, + "num_wires": 4, + "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", + "witness_compiler": "c++" + }, + { + "circuit_id": "f6721499-2c00-429c-9215-306562087f3c", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-14T16:48:59.864Z", + "proving_scheme": "groth16", + "status": "Ready", + "compute_time": "P0DT00H00M07.476797S", + "compute_times": { + "total": 7.554694190621376, + "queued": 8.490739, + "clean_up": 0.001280084252357483, + "create_cpp": 0.04679052531719208, + "file_setup": 0.2480800412595272, + "compile_cpp": 4.608315961435437, + "create_r1cs": 0.010296281427145004, + "save_results": 0.005138525739312172, + "get_r1cs_info": 0.0006614606827497482, + "groth16_setup": 1.2760554868727922, + "export_verification_key": 1.3551383931189775, + "download_trusted_setup_file": 0.002459688112139702 + }, + "file_sizes": { + "total": 225418, + "circuit": 213240, + "total_gb": 0.000225418, + "total_mb": 0.225418, + "circuit.dat": 6176, + "code.tar.gz": 497, + "circuit.zkey": 2580, + "verification_key": 2925 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", + "Model:": "85", + "CPU(s):": "96", + "BogoMIPS:": "5400.00", + "L2 cache:": "48 MiB (48 instances)", + "L3 cache:": "66 MiB (2 instances)", + "Stepping:": "4", + "L1d cache:": "1.5 MiB (48 instances)", + "L1i cache:": "1.5 MiB (48 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "46 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", + "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", + "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Core(s) per socket:": "24", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", + "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", + "Vulnerability Meltdown:": "Mitigation; PTI", + "Vulnerability Retbleed:": "Mitigation; IBRS", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", + "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": 0, + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0, + "num_wires": 4, + "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", + "witness_compiler": "c++" + }, + { + "circuit_id": "c64d50b6-82b2-488e-b16a-d8579f7164b2", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-14T16:48:58.842Z", + "proving_scheme": "groth16", + "status": "Ready", + "compute_time": "P0DT00H00M07.682333S", + "compute_times": { + "total": 7.775689832866192, + "queued": 1.146722, + "clean_up": 0.0018197707831859589, + "create_cpp": 0.045808885246515274, + "file_setup": 0.2579942364245653, + "compile_cpp": 4.6305790320038795, + "create_r1cs": 0.0165061317384243, + "save_results": 0.006031488999724388, + "get_r1cs_info": 0.0005368776619434357, + "groth16_setup": 1.4302892293781042, + "export_verification_key": 1.3840640261769295, + "download_trusted_setup_file": 0.001457681879401207 + }, + "file_sizes": { + "total": 225450, + "circuit": 213240, + "total_gb": 0.00022545, + "total_mb": 0.22545, + "circuit.dat": 6176, + "code.tar.gz": 529, + "circuit.zkey": 2580, + "verification_key": 2925 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tgz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", + "Model:": "85", + "CPU(s):": "96", + "BogoMIPS:": "5400.00", + "L2 cache:": "48 MiB (48 instances)", + "L3 cache:": "66 MiB (2 instances)", + "Stepping:": "4", + "L1d cache:": "1.5 MiB (48 instances)", + "L1i cache:": "1.5 MiB (48 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "46 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", + "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", + "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Core(s) per socket:": "24", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", + "On-line CPU(s) list:": "0,1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41-49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89-95", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88", + "Vulnerability Meltdown:": "Mitigation; PTI", + "Vulnerability Retbleed:": "Mitigation; IBRS", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", + "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": 0, + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0, + "num_wires": 4, + "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", + "witness_compiler": "c++" + }, + { + "circuit_id": "fd68ec95-cb88-4944-a62e-d762e4d6e851", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-14T16:48:58.484Z", + "proving_scheme": "groth16", + "status": "Ready", + "compute_time": "P0DT00H00M07.845773S", + "compute_times": { + "total": 7.921329101547599, + "queued": 1.401368, + "clean_up": 0.0007218196988105774, + "create_cpp": 0.05786048248410225, + "file_setup": 0.303074324503541, + "compile_cpp": 4.705286420881748, + "create_r1cs": 0.0170378927141428, + "save_results": 0.005208676680922508, + "get_r1cs_info": 0.0006915386766195297, + "groth16_setup": 1.3473380841314793, + "export_verification_key": 1.4811212103813887, + "download_trusted_setup_file": 0.0025439634919166565 + }, + "file_sizes": { + "total": 225418, + "circuit": 213240, + "total_gb": 0.000225418, + "total_mb": 0.225418, + "circuit.dat": 6176, + "code.tar.gz": 497, + "circuit.zkey": 2580, + "verification_key": 2925 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", + "Model:": "85", + "CPU(s):": "96", + "BogoMIPS:": "5400.00", + "L2 cache:": "48 MiB (48 instances)", + "L3 cache:": "66 MiB (2 instances)", + "Stepping:": "4", + "L1d cache:": "1.5 MiB (48 instances)", + "L1i cache:": "1.5 MiB (48 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "46 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", + "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", + "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Core(s) per socket:": "24", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", + "On-line CPU(s) list:": "0,1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41-49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89-95", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88", + "Vulnerability Meltdown:": "Mitigation; PTI", + "Vulnerability Retbleed:": "Mitigation; IBRS", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", + "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": 0, + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0, + "num_wires": 4, + "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", + "witness_compiler": "c++" + }, + { + "circuit_id": "150e09f9-0ad0-4b12-9afa-1c95076c1ad2", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-14T16:48:58.436Z", + "proving_scheme": "groth16", + "status": "Ready", + "compute_time": "P0DT00H00M07.537626S", + "compute_times": { + "total": 7.609223047271371, + "queued": 1.174004, + "clean_up": 0.0018986072391271591, + "create_cpp": 0.04804324172437191, + "file_setup": 0.23359503969550133, + "compile_cpp": 4.719695445150137, + "create_r1cs": 0.017463305965065956, + "save_results": 0.005400665104389191, + "get_r1cs_info": 0.0008178930729627609, + "groth16_setup": 1.291828017681837, + "export_verification_key": 1.2875860054045916, + "download_trusted_setup_file": 0.002461083233356476 + }, + "file_sizes": { + "total": 225424, + "circuit": 213240, + "total_gb": 0.000225424, + "total_mb": 0.225424, + "circuit.dat": 6176, + "code.tar.gz": 503, + "circuit.zkey": 2580, + "verification_key": 2925 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", + "Model:": "85", + "CPU(s):": "96", + "BogoMIPS:": "5400.00", + "L2 cache:": "48 MiB (48 instances)", + "L3 cache:": "66 MiB (2 instances)", + "Stepping:": "4", + "L1d cache:": "1.5 MiB (48 instances)", + "L1i cache:": "1.5 MiB (48 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "46 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", + "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", + "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Core(s) per socket:": "24", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", + "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", + "Vulnerability Meltdown:": "Mitigation; PTI", + "Vulnerability Retbleed:": "Mitigation; IBRS", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", + "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": 0, + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0, + "num_wires": 4, + "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", + "witness_compiler": "c++" + }, + { + "circuit_id": "8697f2af-8ae6-406c-a49a-032242345f4c", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-14T16:48:08.500Z", + "proving_scheme": "groth16", + "status": "Ready", + "compute_time": "P0DT00H00M07.786954S", + "compute_times": { + "total": 7.866660824045539, + "queued": 26.529028, + "clean_up": 0.001429310068488121, + "create_cpp": 0.05666426755487919, + "file_setup": 0.24920494854450226, + "compile_cpp": 4.811976304277778, + "create_r1cs": 0.009921343997120857, + "save_results": 0.005788298323750496, + "get_r1cs_info": 0.000774867832660675, + "groth16_setup": 1.3699789196252823, + "export_verification_key": 1.3578939326107502, + "download_trusted_setup_file": 0.0025129076093435287 + }, + "file_sizes": { + "total": 225418, + "circuit": 213240, + "total_gb": 0.000225418, + "total_mb": 0.225418, + "circuit.dat": 6176, + "code.tar.gz": 497, + "circuit.zkey": 2580, + "verification_key": 2925 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", + "Model:": "85", + "CPU(s):": "96", + "BogoMIPS:": "5400.00", + "L2 cache:": "48 MiB (48 instances)", + "L3 cache:": "66 MiB (2 instances)", + "Stepping:": "4", + "L1d cache:": "1.5 MiB (48 instances)", + "L1i cache:": "1.5 MiB (48 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "46 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", + "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", + "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Core(s) per socket:": "24", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", + "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", + "Vulnerability Meltdown:": "Mitigation; PTI", + "Vulnerability Retbleed:": "Mitigation; IBRS", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", + "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": 0, + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0, + "num_wires": 4, + "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", + "witness_compiler": "c++" + }, + { + "circuit_id": "1d8ed536-7799-4104-9829-aab438b46c50", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-14T16:48:07.542Z", + "proving_scheme": "groth16", + "status": "Ready", + "compute_time": "P0DT00H00M07.742077S", + "compute_times": { + "total": 7.817316031083465, + "queued": 18.599385, + "clean_up": 0.0018254183232784271, + "create_cpp": 0.046345429494977, + "file_setup": 0.2319784890860319, + "compile_cpp": 4.7667300291359425, + "create_r1cs": 0.028794724494218826, + "save_results": 0.00572955422103405, + "get_r1cs_info": 0.0007030870765447617, + "groth16_setup": 1.3311582524329424, + "export_verification_key": 1.4022186826914549, + "download_trusted_setup_file": 0.0013777166604995728 + }, + "file_sizes": { + "total": 225418, + "circuit": 213240, + "total_gb": 0.000225418, + "total_mb": 0.225418, + "circuit.dat": 6176, + "code.tar.gz": 497, + "circuit.zkey": 2580, + "verification_key": 2925 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", + "Model:": "85", + "CPU(s):": "96", + "BogoMIPS:": "5400.00", + "L2 cache:": "48 MiB (48 instances)", + "L3 cache:": "66 MiB (2 instances)", + "Stepping:": "4", + "L1d cache:": "1.5 MiB (48 instances)", + "L1i cache:": "1.5 MiB (48 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "46 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", + "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", + "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Core(s) per socket:": "24", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", + "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", + "Vulnerability Meltdown:": "Mitigation; PTI", + "Vulnerability Retbleed:": "Mitigation; IBRS", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", + "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": 0, + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0, + "num_wires": 4, + "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", + "witness_compiler": "c++" + }, + { + "circuit_id": "31036229-08f3-46ef-8764-d07d8457ae98", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-14T16:48:07.152Z", + "proving_scheme": "groth16", + "status": "Ready", + "compute_time": "P0DT00H00M07.755260S", + "compute_times": { + "total": 7.827754411846399, + "queued": 1.187311, + "clean_up": 0.0015825219452381134, + "create_cpp": 0.055841829627752304, + "file_setup": 0.24094245955348015, + "compile_cpp": 4.727515337988734, + "create_r1cs": 0.01797172799706459, + "save_results": 0.00582987442612648, + "get_r1cs_info": 0.0007000844925642014, + "groth16_setup": 1.3169381711632013, + "export_verification_key": 1.457504654303193, + "download_trusted_setup_file": 0.0024551209062337875 + }, + "file_sizes": { + "total": 225450, + "circuit": 213240, + "total_gb": 0.00022545, + "total_mb": 0.22545, + "circuit.dat": 6176, + "code.tar.gz": 529, + "circuit.zkey": 2580, + "verification_key": 2925 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tgz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", + "Model:": "85", + "CPU(s):": "96", + "BogoMIPS:": "5400.00", + "L2 cache:": "48 MiB (48 instances)", + "L3 cache:": "66 MiB (2 instances)", + "Stepping:": "4", + "L1d cache:": "1.5 MiB (48 instances)", + "L1i cache:": "1.5 MiB (48 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "46 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", + "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", + "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Core(s) per socket:": "24", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", + "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", + "Vulnerability Meltdown:": "Mitigation; PTI", + "Vulnerability Retbleed:": "Mitigation; IBRS", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", + "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": 0, + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0, + "num_wires": 4, + "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", + "witness_compiler": "c++" + }, + { + "circuit_id": "5903cf7f-4216-4310-9b75-38372f8c388c", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-14T16:48:07.102Z", + "proving_scheme": "groth16", + "status": "Ready", + "compute_time": "P0DT00H00M07.629072S", + "compute_times": { + "total": 7.706731498241425, + "queued": 10.220574, + "clean_up": 0.0017311125993728638, + "create_cpp": 0.04118148237466812, + "file_setup": 0.24070367217063904, + "compile_cpp": 4.700527288019657, + "create_r1cs": 0.018805818632245064, + "save_results": 0.00452309288084507, + "get_r1cs_info": 0.0006768498569726944, + "groth16_setup": 1.3046912178397179, + "export_verification_key": 1.3908804636448622, + "download_trusted_setup_file": 0.002524895593523979 + }, + "file_sizes": { + "total": 225424, + "circuit": 213240, + "total_gb": 0.000225424, + "total_mb": 0.225424, + "circuit.dat": 6176, + "code.tar.gz": 503, + "circuit.zkey": 2580, + "verification_key": 2925 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", + "Model:": "85", + "CPU(s):": "96", + "BogoMIPS:": "5400.00", + "L2 cache:": "48 MiB (48 instances)", + "L3 cache:": "66 MiB (2 instances)", + "Stepping:": "4", + "L1d cache:": "1.5 MiB (48 instances)", + "L1i cache:": "1.5 MiB (48 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "46 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", + "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", + "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Core(s) per socket:": "24", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", + "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", + "Vulnerability Meltdown:": "Mitigation; PTI", + "Vulnerability Retbleed:": "Mitigation; IBRS", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", + "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": 0, + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0, + "num_wires": 4, + "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", + "witness_compiler": "c++" + }, + { + "circuit_id": "b0c793e4-b515-45ac-8a72-cfae0ac922dc", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-14T16:44:24.312Z", + "proving_scheme": "groth16", + "status": "Ready", + "compute_time": "P0DT00H00M07.482628S", + "compute_times": { + "total": 7.561975220218301, + "queued": 1.222391, + "clean_up": 0.0017055310308933258, + "create_cpp": 0.05199330858886242, + "file_setup": 0.2374334391206503, + "compile_cpp": 4.667886773124337, + "create_r1cs": 0.01656530611217022, + "save_results": 0.006572069600224495, + "get_r1cs_info": 0.000768609344959259, + "groth16_setup": 1.3185450080782175, + "export_verification_key": 1.257138391956687, + "download_trusted_setup_file": 0.002875484526157379 + }, + "file_sizes": { + "total": 225418, + "circuit": 213240, + "total_gb": 0.000225418, + "total_mb": 0.225418, + "circuit.dat": 6176, + "code.tar.gz": 497, + "circuit.zkey": 2580, + "verification_key": 2925 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", + "Model:": "85", + "CPU(s):": "96", + "BogoMIPS:": "5400.00", + "L2 cache:": "48 MiB (48 instances)", + "L3 cache:": "66 MiB (2 instances)", + "Stepping:": "4", + "L1d cache:": "1.5 MiB (48 instances)", + "L1i cache:": "1.5 MiB (48 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "46 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", + "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", + "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Core(s) per socket:": "24", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", + "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", + "Vulnerability Meltdown:": "Mitigation; PTI", + "Vulnerability Retbleed:": "Mitigation; IBRS", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", + "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": 0, + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0, + "num_wires": 4, + "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", + "witness_compiler": "c++" + }, + { + "circuit_id": "8233556a-9137-4b8f-87d6-5bef601f558e", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-14T16:43:35.089Z", + "proving_scheme": "groth16", + "status": "Ready", + "compute_time": "P0DT00H00M07.884736S", + "compute_times": { + "total": 7.959419224411249, + "queued": 1.229535, + "clean_up": 0.0019381027668714523, + "create_cpp": 0.05442995950579643, + "file_setup": 0.24910731054842472, + "compile_cpp": 4.846454568207264, + "create_r1cs": 0.017506379634141922, + "save_results": 0.006044380366802216, + "get_r1cs_info": 0.0007475633174180984, + "groth16_setup": 1.4534037355333567, + "export_verification_key": 1.326861247420311, + "download_trusted_setup_file": 0.0024160724133253098 + }, + "file_sizes": { + "total": 225418, + "circuit": 213240, + "total_gb": 0.000225418, + "total_mb": 0.225418, + "circuit.dat": 6176, + "code.tar.gz": 497, + "circuit.zkey": 2580, + "verification_key": 2925 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", + "Model:": "85", + "CPU(s):": "96", + "BogoMIPS:": "5400.00", + "L2 cache:": "48 MiB (48 instances)", + "L3 cache:": "66 MiB (2 instances)", + "Stepping:": "4", + "L1d cache:": "1.5 MiB (48 instances)", + "L1i cache:": "1.5 MiB (48 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "46 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", + "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", + "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Core(s) per socket:": "24", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", + "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", + "Vulnerability Meltdown:": "Mitigation; PTI", + "Vulnerability Retbleed:": "Mitigation; IBRS", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", + "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": 0, + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0, + "num_wires": 4, + "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", + "witness_compiler": "c++" + }, + { + "circuit_id": "33b156af-e90c-45b9-8443-ef17bd8f6d97", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-14T16:42:30.035Z", + "proving_scheme": "groth16", + "status": "Ready", + "compute_time": "P0DT00H00M07.407008S", + "compute_times": { + "total": 7.483849035575986, + "queued": 1.19642, + "clean_up": 0.0023624245077371597, + "create_cpp": 0.04774354584515095, + "file_setup": 0.2423761673271656, + "compile_cpp": 4.617915507405996, + "create_r1cs": 0.010918818414211273, + "save_results": 0.005705619230866432, + "get_r1cs_info": 0.0007171276956796646, + "groth16_setup": 1.274269174784422, + "export_verification_key": 1.2790968604385853, + "download_trusted_setup_file": 0.0024453066289424896 + }, + "file_sizes": { + "total": 225418, + "circuit": 213240, + "total_gb": 0.000225418, + "total_mb": 0.225418, + "circuit.dat": 6176, + "code.tar.gz": 497, + "circuit.zkey": 2580, + "verification_key": 2925 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", + "Model:": "85", + "CPU(s):": "96", + "BogoMIPS:": "5400.00", + "L2 cache:": "48 MiB (48 instances)", + "L3 cache:": "66 MiB (2 instances)", + "Stepping:": "4", + "L1d cache:": "1.5 MiB (48 instances)", + "L1i cache:": "1.5 MiB (48 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "46 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", + "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", + "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Core(s) per socket:": "24", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", + "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", + "Vulnerability Meltdown:": "Mitigation; PTI", + "Vulnerability Retbleed:": "Mitigation; IBRS", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", + "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": 0, + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0, + "num_wires": 4, + "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", + "witness_compiler": "c++" + }, + { + "circuit_id": "fdfc7247-b167-4abd-91b0-6371c1577350", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-14T16:41:31.147Z", + "proving_scheme": "groth16", + "status": "Ready", + "compute_time": "P0DT00H00M07.445445S", + "compute_times": { + "total": 7.523868313059211, + "queued": 1.124406, + "clean_up": 0.0018163751810789108, + "create_cpp": 0.05418575927615166, + "file_setup": 0.2429647035896778, + "compile_cpp": 4.620327420532703, + "create_r1cs": 0.009532531723380089, + "save_results": 0.005571851506829262, + "get_r1cs_info": 0.0006300453096628189, + "groth16_setup": 1.2738962657749653, + "export_verification_key": 1.312037419527769, + "download_trusted_setup_file": 0.0024276338517665863 + }, + "file_sizes": { + "total": 225418, + "circuit": 213240, + "total_gb": 0.000225418, + "total_mb": 0.225418, + "circuit.dat": 6176, + "code.tar.gz": 497, + "circuit.zkey": 2580, + "verification_key": 2925 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", + "Model:": "85", + "CPU(s):": "96", + "BogoMIPS:": "5400.00", + "L2 cache:": "48 MiB (48 instances)", + "L3 cache:": "66 MiB (2 instances)", + "Stepping:": "4", + "L1d cache:": "1.5 MiB (48 instances)", + "L1i cache:": "1.5 MiB (48 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "46 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", + "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", + "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Core(s) per socket:": "24", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", + "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", + "Vulnerability Meltdown:": "Mitigation; PTI", + "Vulnerability Retbleed:": "Mitigation; IBRS", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", + "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": 0, + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0, + "num_wires": 4, + "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", + "witness_compiler": "c++" + }, + { + "circuit_id": "42522dc2-f82b-4520-967a-55e3e5dabc3c", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-14T16:41:15.809Z", + "proving_scheme": "groth16", + "status": "Ready", + "compute_time": "P0DT00H00M07.571921S", + "compute_times": { + "total": 7.650477720424533, + "queued": 1.111976, + "clean_up": 0.0017036069184541702, + "create_cpp": 0.05775970779359341, + "file_setup": 0.24369817227125168, + "compile_cpp": 4.567208100110292, + "create_r1cs": 0.010626023635268211, + "save_results": 0.005508618429303169, + "get_r1cs_info": 0.0007592644542455673, + "groth16_setup": 1.325358035042882, + "export_verification_key": 1.434918174520135, + "download_trusted_setup_file": 0.002489684149622917 + }, + "file_sizes": { + "total": 225418, + "circuit": 213240, + "total_gb": 0.000225418, + "total_mb": 0.225418, + "circuit.dat": 6176, + "code.tar.gz": 497, + "circuit.zkey": 2580, + "verification_key": 2925 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", + "Model:": "85", + "CPU(s):": "96", + "BogoMIPS:": "5400.00", + "L2 cache:": "48 MiB (48 instances)", + "L3 cache:": "66 MiB (2 instances)", + "Stepping:": "4", + "L1d cache:": "1.5 MiB (48 instances)", + "L1i cache:": "1.5 MiB (48 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "46 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", + "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", + "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Core(s) per socket:": "24", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", + "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", + "Vulnerability Meltdown:": "Mitigation; PTI", + "Vulnerability Retbleed:": "Mitigation; IBRS", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", + "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": 0, + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0, + "num_wires": 4, + "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", + "witness_compiler": "c++" + }, + { + "circuit_id": "ccb365dd-aaa7-4135-8451-8109549d2425", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-14T16:40:40.350Z", + "proving_scheme": "groth16", + "status": "Ready", + "compute_time": "P0DT00H00M07.478422S", + "compute_times": { + "total": 7.552844997495413, + "queued": 1.131376, + "clean_up": 0.0011975225061178207, + "create_cpp": 0.04975225776433945, + "file_setup": 0.23737302795052528, + "compile_cpp": 4.705687249079347, + "create_r1cs": 0.010492220520973206, + "save_results": 0.005188409239053726, + "get_r1cs_info": 0.000648990273475647, + "groth16_setup": 1.239344047382474, + "export_verification_key": 1.3002808820456266, + "download_trusted_setup_file": 0.0024506710469722748 + }, + "file_sizes": { + "total": 225418, + "circuit": 213240, + "total_gb": 0.000225418, + "total_mb": 0.225418, + "circuit.dat": 6176, + "code.tar.gz": 497, + "circuit.zkey": 2580, + "verification_key": 2925 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", + "Model:": "85", + "CPU(s):": "96", + "BogoMIPS:": "5400.00", + "L2 cache:": "48 MiB (48 instances)", + "L3 cache:": "66 MiB (2 instances)", + "Stepping:": "4", + "L1d cache:": "1.5 MiB (48 instances)", + "L1i cache:": "1.5 MiB (48 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "46 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", + "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", + "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Core(s) per socket:": "24", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", + "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", + "Vulnerability Meltdown:": "Mitigation; PTI", + "Vulnerability Retbleed:": "Mitigation; IBRS", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", + "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": 0, + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0, + "num_wires": 4, + "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", + "witness_compiler": "c++" + }, + { + "circuit_id": "cb341471-b6e3-493d-b1e8-b53ce3cd6a5b", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-14T16:39:10.262Z", + "proving_scheme": "groth16", + "status": "Ready", + "compute_time": "P0DT00H00M07.538228S", + "compute_times": { + "total": 7.6150872856378555, + "queued": 1.141062, + "clean_up": 0.0008311737328767776, + "create_cpp": 0.049604376778006554, + "file_setup": 0.2431975770741701, + "compile_cpp": 4.613074295222759, + "create_r1cs": 0.010859638452529907, + "save_results": 0.0043745823204517365, + "get_r1cs_info": 0.0006608162075281143, + "groth16_setup": 1.3494537398219109, + "export_verification_key": 1.3401750400662422, + "download_trusted_setup_file": 0.0024873558431863785 + }, + "file_sizes": { + "total": 225418, + "circuit": 213240, + "total_gb": 0.000225418, + "total_mb": 0.225418, + "circuit.dat": 6176, + "code.tar.gz": 497, + "circuit.zkey": 2580, + "verification_key": 2925 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", + "Model:": "85", + "CPU(s):": "96", + "BogoMIPS:": "5400.00", + "L2 cache:": "48 MiB (48 instances)", + "L3 cache:": "66 MiB (2 instances)", + "Stepping:": "4", + "L1d cache:": "1.5 MiB (48 instances)", + "L1i cache:": "1.5 MiB (48 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "46 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", + "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", + "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Core(s) per socket:": "24", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", + "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", + "Vulnerability Meltdown:": "Mitigation; PTI", + "Vulnerability Retbleed:": "Mitigation; IBRS", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", + "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": 0, + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0, + "num_wires": 4, + "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", + "witness_compiler": "c++" + }, + { + "circuit_id": "0dc923b0-4401-4293-a34b-d6c5580a0645", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-14T16:38:13.292Z", + "proving_scheme": "groth16", + "status": "Ready", + "compute_time": "P0DT00H00M07.395198S", + "compute_times": { + "total": 7.466056250035763, + "queued": 1.163961, + "clean_up": 0.0011384561657905579, + "create_cpp": 0.04686044529080391, + "file_setup": 0.24102316424250603, + "compile_cpp": 4.544771498069167, + "create_r1cs": 0.024224452674388885, + "save_results": 0.003494899719953537, + "get_r1cs_info": 0.0006983857601881027, + "groth16_setup": 1.3162990398705006, + "export_verification_key": 1.2855232805013657, + "download_trusted_setup_file": 0.0015111621469259262 + }, + "file_sizes": { + "total": 225418, + "circuit": 213240, + "total_gb": 0.000225418, + "total_mb": 0.225418, + "circuit.dat": 6176, + "code.tar.gz": 497, + "circuit.zkey": 2580, + "verification_key": 2925 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", + "Model:": "85", + "CPU(s):": "96", + "BogoMIPS:": "5400.00", + "L2 cache:": "48 MiB (48 instances)", + "L3 cache:": "66 MiB (2 instances)", + "Stepping:": "4", + "L1d cache:": "1.5 MiB (48 instances)", + "L1i cache:": "1.5 MiB (48 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "46 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", + "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", + "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Core(s) per socket:": "24", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", + "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", + "Vulnerability Meltdown:": "Mitigation; PTI", + "Vulnerability Retbleed:": "Mitigation; IBRS", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", + "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": 0, + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0, + "num_wires": 4, + "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", + "witness_compiler": "c++" + }, + { + "circuit_id": "326d7770-6645-42f7-8e1f-4bbf78603c2d", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-14T16:36:59.942Z", + "proving_scheme": "groth16", + "status": "Ready", + "compute_time": "P0DT00H00M07.493549S", + "compute_times": { + "total": 7.5688981637358665, + "queued": 1.122729, + "clean_up": 0.0016787368804216385, + "create_cpp": 0.04684302769601345, + "file_setup": 0.24815072491765022, + "compile_cpp": 4.597322579473257, + "create_r1cs": 0.01063484326004982, + "save_results": 0.006045779213309288, + "get_r1cs_info": 0.0006333775818347931, + "groth16_setup": 1.3306193556636572, + "export_verification_key": 1.3240374308079481, + "download_trusted_setup_file": 0.0024573486298322678 + }, + "file_sizes": { + "total": 225418, + "circuit": 213240, + "total_gb": 0.000225418, + "total_mb": 0.225418, + "circuit.dat": 6176, + "code.tar.gz": 497, + "circuit.zkey": 2580, + "verification_key": 2925 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", + "Model:": "85", + "CPU(s):": "96", + "BogoMIPS:": "5400.00", + "L2 cache:": "48 MiB (48 instances)", + "L3 cache:": "66 MiB (2 instances)", + "Stepping:": "4", + "L1d cache:": "1.5 MiB (48 instances)", + "L1i cache:": "1.5 MiB (48 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "46 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", + "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", + "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Core(s) per socket:": "24", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", + "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", + "Vulnerability Meltdown:": "Mitigation; PTI", + "Vulnerability Retbleed:": "Mitigation; IBRS", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", + "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": 0, + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0, + "num_wires": 4, + "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", + "witness_compiler": "c++" + }, + { + "circuit_id": "2e5c81e7-f594-4e07-b4f7-1886781181b1", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-14T16:36:29.172Z", + "proving_scheme": "groth16", + "status": "Ready", + "compute_time": "P0DT00H00M07.746103S", + "compute_times": { + "total": 7.818564524874091, + "queued": 1.135853, + "clean_up": 0.0016661174595355988, + "create_cpp": 0.04841892793774605, + "file_setup": 0.247941792011261, + "compile_cpp": 4.713706800714135, + "create_r1cs": 0.01695185899734497, + "save_results": 0.006999487057328224, + "get_r1cs_info": 0.0007085073739290237, + "groth16_setup": 1.3950544595718384, + "export_verification_key": 1.3842929042875767, + "download_trusted_setup_file": 0.0024377331137657166 + }, + "file_sizes": { + "total": 225418, + "circuit": 213240, + "total_gb": 0.000225418, + "total_mb": 0.225418, + "circuit.dat": 6176, + "code.tar.gz": 497, + "circuit.zkey": 2580, + "verification_key": 2925 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", + "Model:": "85", + "CPU(s):": "96", + "BogoMIPS:": "5400.00", + "L2 cache:": "48 MiB (48 instances)", + "L3 cache:": "66 MiB (2 instances)", + "Stepping:": "4", + "L1d cache:": "1.5 MiB (48 instances)", + "L1i cache:": "1.5 MiB (48 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "46 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", + "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", + "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Core(s) per socket:": "24", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", + "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", + "Vulnerability Meltdown:": "Mitigation; PTI", + "Vulnerability Retbleed:": "Mitigation; IBRS", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", + "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": 0, + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0, + "num_wires": 4, + "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", + "witness_compiler": "c++" + }, + { + "circuit_id": "4a85b21e-2567-4d75-8cf7-f7879d832acf", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-14T16:33:59.993Z", + "proving_scheme": "groth16", + "status": "Ready", + "compute_time": "P0DT00H00M07.627692S", + "compute_times": { + "total": 7.703156094998121, + "queued": 1.154377, + "clean_up": 0.0018535908311605453, + "create_cpp": 0.047643400728702545, + "file_setup": 0.2447856217622757, + "compile_cpp": 4.74752707220614, + "create_r1cs": 0.015797777101397514, + "save_results": 0.005216935649514198, + "get_r1cs_info": 0.0007510744035243988, + "groth16_setup": 1.3178835678845644, + "export_verification_key": 1.3187684249132872, + "download_trusted_setup_file": 0.002450980246067047 + }, + "file_sizes": { + "total": 225418, + "circuit": 213240, + "total_gb": 0.000225418, + "total_mb": 0.225418, + "circuit.dat": 6176, + "code.tar.gz": 497, + "circuit.zkey": 2580, + "verification_key": 2925 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", + "Model:": "85", + "CPU(s):": "96", + "BogoMIPS:": "5400.00", + "L2 cache:": "48 MiB (48 instances)", + "L3 cache:": "66 MiB (2 instances)", + "Stepping:": "4", + "L1d cache:": "1.5 MiB (48 instances)", + "L1i cache:": "1.5 MiB (48 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "46 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", + "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", + "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Core(s) per socket:": "24", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", + "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", + "Vulnerability Meltdown:": "Mitigation; PTI", + "Vulnerability Retbleed:": "Mitigation; IBRS", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", + "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": 0, + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0, + "num_wires": 4, + "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", + "witness_compiler": "c++" + }, + { + "circuit_id": "49969f00-5b6b-4e1b-ae54-3ebb821dde8b", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-14T16:33:38.587Z", + "proving_scheme": "groth16", + "status": "Ready", + "compute_time": "P0DT00H00M07.552651S", + "compute_times": { + "total": 7.624790228903294, + "queued": 1.115758, + "clean_up": 0.0017047524452209473, + "create_cpp": 0.04909936711192131, + "file_setup": 0.24133107624948025, + "compile_cpp": 4.7210179921239614, + "create_r1cs": 0.011723736301064491, + "save_results": 0.005721684545278549, + "get_r1cs_info": 0.00038177333772182465, + "groth16_setup": 1.2864660620689392, + "export_verification_key": 1.3059150949120522, + "download_trusted_setup_file": 0.0009307935833930969 + }, + "file_sizes": { + "total": 225418, + "circuit": 213240, + "total_gb": 0.000225418, + "total_mb": 0.225418, + "circuit.dat": 6176, + "code.tar.gz": 497, + "circuit.zkey": 2580, + "verification_key": 2925 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", + "Model:": "85", + "CPU(s):": "96", + "BogoMIPS:": "5400.00", + "L2 cache:": "48 MiB (48 instances)", + "L3 cache:": "66 MiB (2 instances)", + "Stepping:": "4", + "L1d cache:": "1.5 MiB (48 instances)", + "L1i cache:": "1.5 MiB (48 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "46 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", + "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", + "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Core(s) per socket:": "24", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", + "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", + "Vulnerability Meltdown:": "Mitigation; PTI", + "Vulnerability Retbleed:": "Mitigation; IBRS", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", + "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": 0, + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0, + "num_wires": 4, + "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", + "witness_compiler": "c++" + }, + { + "circuit_id": "4e1013e6-c530-4e8d-9755-f26a64b2d572", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-14T16:33:08.324Z", + "proving_scheme": "groth16", + "status": "Ready", + "compute_time": "P0DT00H00M07.724889S", + "compute_times": { + "total": 7.7971851993352175, + "queued": 1.116063, + "clean_up": 0.0017428696155548096, + "create_cpp": 0.05533359386026859, + "file_setup": 0.23893662728369236, + "compile_cpp": 4.91211068071425, + "create_r1cs": 0.017335472628474236, + "save_results": 0.005370132625102997, + "get_r1cs_info": 0.0007455870509147644, + "groth16_setup": 1.2513550594449043, + "export_verification_key": 1.3113222550600767, + "download_trusted_setup_file": 0.0024493057280778885 + }, + "file_sizes": { + "total": 225418, + "circuit": 213240, + "total_gb": 0.000225418, + "total_mb": 0.225418, + "circuit.dat": 6176, + "code.tar.gz": 497, + "circuit.zkey": 2580, + "verification_key": 2925 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", + "Model:": "85", + "CPU(s):": "96", + "BogoMIPS:": "5400.00", + "L2 cache:": "48 MiB (48 instances)", + "L3 cache:": "66 MiB (2 instances)", + "Stepping:": "4", + "L1d cache:": "1.5 MiB (48 instances)", + "L1i cache:": "1.5 MiB (48 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "46 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", + "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", + "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Core(s) per socket:": "24", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", + "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", + "Vulnerability Meltdown:": "Mitigation; PTI", + "Vulnerability Retbleed:": "Mitigation; IBRS", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", + "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": 0, + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0, + "num_wires": 4, + "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", + "witness_compiler": "c++" + }, + { + "circuit_id": "a2b170e4-edf9-4798-bb85-35245768207d", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-14T16:09:57.696Z", + "proving_scheme": "groth16", + "status": "Ready", + "compute_time": "P0DT00H00M07.679682S", + "compute_times": { + "total": 7.756731368601322, + "queued": 1.193863, + "clean_up": 0.0013168156147003174, + "create_cpp": 0.04220888577401638, + "file_setup": 0.24753136932849884, + "compile_cpp": 4.787212835624814, + "create_r1cs": 0.017687704414129257, + "save_results": 0.007237255573272705, + "get_r1cs_info": 0.000683177262544632, + "groth16_setup": 1.3392270132899284, + "export_verification_key": 1.3106779605150223, + "download_trusted_setup_file": 0.002470754086971283 + }, + "file_sizes": { + "total": 225418, + "circuit": 213240, + "total_gb": 0.000225418, + "total_mb": 0.225418, + "circuit.dat": 6176, + "code.tar.gz": 497, + "circuit.zkey": 2580, + "verification_key": 2925 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", + "Model:": "85", + "CPU(s):": "96", + "BogoMIPS:": "5400.00", + "L2 cache:": "48 MiB (48 instances)", + "L3 cache:": "66 MiB (2 instances)", + "Stepping:": "4", + "L1d cache:": "1.5 MiB (48 instances)", + "L1i cache:": "1.5 MiB (48 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "46 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", + "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", + "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Core(s) per socket:": "24", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", + "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", + "Vulnerability Meltdown:": "Mitigation; PTI", + "Vulnerability Retbleed:": "Mitigation; IBRS", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", + "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": 0, + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0, + "num_wires": 4, + "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", + "witness_compiler": "c++" + }, + { + "circuit_id": "4fba5244-d526-41a5-bf36-a34c17c25f9b", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-14T15:55:58.030Z", + "proving_scheme": "groth16", + "status": "Ready", + "compute_time": "P0DT00H00M07.665572S", + "compute_times": { + "total": 7.745568448677659, + "queued": 1.257926, + "clean_up": 0.0018980763852596283, + "create_cpp": 0.055884186178445816, + "file_setup": 0.26442782394587994, + "compile_cpp": 4.797283286228776, + "create_r1cs": 0.01778632216155529, + "save_results": 0.005175711587071419, + "get_r1cs_info": 0.0007982272654771805, + "groth16_setup": 1.322161003947258, + "export_verification_key": 1.2772313170135021, + "download_trusted_setup_file": 0.0024321619421243668 + }, + "file_sizes": { + "total": 225418, + "circuit": 213240, + "total_gb": 0.000225418, + "total_mb": 0.225418, + "circuit.dat": 6176, + "code.tar.gz": 497, + "circuit.zkey": 2580, + "verification_key": 2925 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", + "Model:": "85", + "CPU(s):": "96", + "BogoMIPS:": "5400.00", + "L2 cache:": "48 MiB (48 instances)", + "L3 cache:": "66 MiB (2 instances)", + "Stepping:": "4", + "L1d cache:": "1.5 MiB (48 instances)", + "L1i cache:": "1.5 MiB (48 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "46 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", + "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", + "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Core(s) per socket:": "24", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", + "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", + "Vulnerability Meltdown:": "Mitigation; PTI", + "Vulnerability Retbleed:": "Mitigation; IBRS", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", + "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": 0, + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0, + "num_wires": 4, + "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", + "witness_compiler": "c++" + }, + { + "circuit_id": "60ad4516-8a32-43e1-916b-ab2680b0224a", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-14T15:52:58.481Z", + "proving_scheme": "groth16", + "status": "Ready", + "compute_time": "P0DT00H00M07.728836S", + "compute_times": { + "total": 7.801407495513558, + "queued": 1.158764, + "clean_up": 0.0015893597155809402, + "create_cpp": 0.05614244565367699, + "file_setup": 0.25334477610886097, + "compile_cpp": 4.813857762143016, + "create_r1cs": 0.012846684083342552, + "save_results": 0.004946554079651833, + "get_r1cs_info": 0.000693419948220253, + "groth16_setup": 1.3405254911631346, + "export_verification_key": 1.3146384991705418, + "download_trusted_setup_file": 0.0024357400834560394 + }, + "file_sizes": { + "total": 225418, + "circuit": 213240, + "total_gb": 0.000225418, + "total_mb": 0.225418, + "circuit.dat": 6176, + "code.tar.gz": 497, + "circuit.zkey": 2580, + "verification_key": 2925 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", + "Model:": "85", + "CPU(s):": "96", + "BogoMIPS:": "5400.00", + "L2 cache:": "48 MiB (48 instances)", + "L3 cache:": "66 MiB (2 instances)", + "Stepping:": "4", + "L1d cache:": "1.5 MiB (48 instances)", + "L1i cache:": "1.5 MiB (48 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "46 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", + "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", + "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Core(s) per socket:": "24", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", + "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", + "Vulnerability Meltdown:": "Mitigation; PTI", + "Vulnerability Retbleed:": "Mitigation; IBRS", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", + "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": 0, + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0, + "num_wires": 4, + "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", + "witness_compiler": "c++" + }, + { + "circuit_id": "7b802406-de93-4b76-8a09-11511e22bfa4", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-14T15:49:20.630Z", + "proving_scheme": "groth16", + "status": "Ready", + "compute_time": "P0DT00H00M07.696878S", + "compute_times": { + "total": 7.7695643454790115, + "queued": 1.208482, + "clean_up": 0.001626061275601387, + "create_cpp": 0.047227565199136734, + "file_setup": 0.26737155206501484, + "compile_cpp": 4.872535202652216, + "create_r1cs": 0.01879102736711502, + "save_results": 0.005725011229515076, + "get_r1cs_info": 0.0006924495100975037, + "groth16_setup": 1.232976334169507, + "export_verification_key": 1.3196605183184147, + "download_trusted_setup_file": 0.0024542957544326782 + }, + "file_sizes": { + "total": 225418, + "circuit": 213240, + "total_gb": 0.000225418, + "total_mb": 0.225418, + "circuit.dat": 6176, + "code.tar.gz": 497, + "circuit.zkey": 2580, + "verification_key": 2925 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", + "Model:": "85", + "CPU(s):": "96", + "BogoMIPS:": "5400.00", + "L2 cache:": "48 MiB (48 instances)", + "L3 cache:": "66 MiB (2 instances)", + "Stepping:": "4", + "L1d cache:": "1.5 MiB (48 instances)", + "L1i cache:": "1.5 MiB (48 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "46 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", + "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", + "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Core(s) per socket:": "24", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", + "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", + "Vulnerability Meltdown:": "Mitigation; PTI", + "Vulnerability Retbleed:": "Mitigation; IBRS", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", + "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": 0, + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0, + "num_wires": 4, + "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", + "witness_compiler": "c++" + }, + { + "circuit_id": "ff3d54cb-7235-405e-a9e3-be957dc4c587", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-14T15:49:00.734Z", + "proving_scheme": "groth16", + "status": "Ready", + "compute_time": "P0DT00H00M07.630205S", + "compute_times": { + "total": 7.71001566760242, + "queued": 1.114729, + "clean_up": 0.0020035244524478912, + "create_cpp": 0.053196635097265244, + "file_setup": 0.2405914142727852, + "compile_cpp": 4.621033746749163, + "create_r1cs": 0.03503704071044922, + "save_results": 0.005230717360973358, + "get_r1cs_info": 0.0007014013826847076, + "groth16_setup": 1.402680803090334, + "export_verification_key": 1.3465964272618294, + "download_trusted_setup_file": 0.0024281106889247894 + }, + "file_sizes": { + "total": 225418, + "circuit": 213240, + "total_gb": 0.000225418, + "total_mb": 0.225418, + "circuit.dat": 6176, + "code.tar.gz": 497, + "circuit.zkey": 2580, + "verification_key": 2925 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", + "Model:": "85", + "CPU(s):": "96", + "BogoMIPS:": "5400.00", + "L2 cache:": "48 MiB (48 instances)", + "L3 cache:": "66 MiB (2 instances)", + "Stepping:": "4", + "L1d cache:": "1.5 MiB (48 instances)", + "L1i cache:": "1.5 MiB (48 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "46 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", + "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", + "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Core(s) per socket:": "24", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", + "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", + "Vulnerability Meltdown:": "Mitigation; PTI", + "Vulnerability Retbleed:": "Mitigation; IBRS", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", + "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": 0, + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0, + "num_wires": 4, + "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", + "witness_compiler": "c++" + }, + { + "circuit_id": "90f970fc-7021-49fe-80eb-4aaae78d684e", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-14T15:47:58.175Z", + "proving_scheme": "groth16", + "status": "Ready", + "compute_time": "P0DT00H00M07.246888S", + "compute_times": { + "total": 7.320567287504673, + "queued": 1.199892, + "clean_up": 0.0018009450286626816, + "create_cpp": 0.046688828617334366, + "file_setup": 0.23241388611495495, + "compile_cpp": 4.509111732244492, + "create_r1cs": 0.010652711614966393, + "save_results": 0.0053970906883478165, + "get_r1cs_info": 0.0007533896714448929, + "groth16_setup": 1.233302304521203, + "export_verification_key": 1.2775605637580156, + "download_trusted_setup_file": 0.002413202077150345 + }, + "file_sizes": { + "total": 225418, + "circuit": 213240, + "total_gb": 0.000225418, + "total_mb": 0.225418, + "circuit.dat": 6176, + "code.tar.gz": 497, + "circuit.zkey": 2580, + "verification_key": 2925 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", + "Model:": "85", + "CPU(s):": "96", + "BogoMIPS:": "5400.00", + "L2 cache:": "48 MiB (48 instances)", + "L3 cache:": "66 MiB (2 instances)", + "Stepping:": "4", + "L1d cache:": "1.5 MiB (48 instances)", + "L1i cache:": "1.5 MiB (48 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "46 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", + "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", + "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Core(s) per socket:": "24", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", + "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", + "Vulnerability Meltdown:": "Mitigation; PTI", + "Vulnerability Retbleed:": "Mitigation; IBRS", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", + "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": 0, + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0, + "num_wires": 4, + "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", + "witness_compiler": "c++" + }, + { + "circuit_id": "925640ea-fa79-4730-ae82-8add47e913cb", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-14T15:47:41.292Z", + "proving_scheme": "groth16", + "status": "Ready", + "compute_time": "P0DT00H00M07.486909S", + "compute_times": { + "total": 7.5634617283940315, + "queued": 1.050597, + "clean_up": 0.0016485508531332016, + "create_cpp": 0.05515584722161293, + "file_setup": 0.23679853416979313, + "compile_cpp": 4.659947486594319, + "create_r1cs": 0.017400609329342842, + "save_results": 0.005805689841508865, + "get_r1cs_info": 0.0006781201809644699, + "groth16_setup": 1.2767266910523176, + "export_verification_key": 1.306356867775321, + "download_trusted_setup_file": 0.0024945326149463654 + }, + "file_sizes": { + "total": 225418, + "circuit": 213240, + "total_gb": 0.000225418, + "total_mb": 0.225418, + "circuit.dat": 6176, + "code.tar.gz": 497, + "circuit.zkey": 2580, + "verification_key": 2925 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", + "Model:": "85", + "CPU(s):": "96", + "BogoMIPS:": "5400.00", + "L2 cache:": "48 MiB (48 instances)", + "L3 cache:": "66 MiB (2 instances)", + "Stepping:": "4", + "L1d cache:": "1.5 MiB (48 instances)", + "L1i cache:": "1.5 MiB (48 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "46 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", + "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", + "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Core(s) per socket:": "24", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", + "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", + "Vulnerability Meltdown:": "Mitigation; PTI", + "Vulnerability Retbleed:": "Mitigation; IBRS", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", + "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": 0, + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0, + "num_wires": 4, + "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", + "witness_compiler": "c++" + }, + { + "circuit_id": "a5b16192-6898-41e6-bfb5-b73a50b8ebbe", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-14T15:45:51.911Z", + "proving_scheme": "groth16", + "status": "Ready", + "compute_time": "P0DT00H00M07.977553S", + "compute_times": { + "total": 8.051811749115586, + "queued": 1.228243, + "clean_up": 0.0016383752226829529, + "create_cpp": 0.04780636169016361, + "file_setup": 0.23954333923757076, + "compile_cpp": 5.166752548888326, + "create_r1cs": 0.018863901495933533, + "save_results": 0.00531991571187973, + "get_r1cs_info": 0.0004027280956506729, + "groth16_setup": 1.2763246074318886, + "export_verification_key": 1.293736344203353, + "download_trusted_setup_file": 0.0010492932051420212 + }, + "file_sizes": { + "total": 225418, + "circuit": 213240, + "total_gb": 0.000225418, + "total_mb": 0.225418, + "circuit.dat": 6176, + "code.tar.gz": 497, + "circuit.zkey": 2580, + "verification_key": 2925 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", + "Model:": "85", + "CPU(s):": "96", + "BogoMIPS:": "5400.00", + "L2 cache:": "48 MiB (48 instances)", + "L3 cache:": "66 MiB (2 instances)", + "Stepping:": "4", + "L1d cache:": "1.5 MiB (48 instances)", + "L1i cache:": "1.5 MiB (48 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "46 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", + "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", + "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Core(s) per socket:": "24", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", + "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", + "Vulnerability Meltdown:": "Mitigation; PTI", + "Vulnerability Retbleed:": "Mitigation; IBRS", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", + "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": 0, + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0, + "num_wires": 4, + "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", + "witness_compiler": "c++" + }, + { + "circuit_id": "68adc5ea-f06c-4d28-ac34-b3077b759a9c", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-14T15:43:16.141Z", + "proving_scheme": "groth16", + "status": "Ready", + "compute_time": "P0DT00H00M07.564382S", + "compute_times": { + "total": 7.62931395880878, + "queued": 1.225967, + "clean_up": 0.0016656853258609772, + "create_cpp": 0.04816170781850815, + "file_setup": 0.22820086777210236, + "compile_cpp": 4.6605421509593725, + "create_r1cs": 0.018833832815289497, + "save_results": 0.006733657792210579, + "get_r1cs_info": 0.0006740186363458633, + "groth16_setup": 1.2996833566576242, + "export_verification_key": 1.3620503433048725, + "download_trusted_setup_file": 0.002435106784105301 + }, + "file_sizes": { + "total": 225418, + "circuit": 213240, + "total_gb": 0.000225418, + "total_mb": 0.225418, + "circuit.dat": 6176, + "code.tar.gz": 497, + "circuit.zkey": 2580, + "verification_key": 2925 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", + "Model:": "85", + "CPU(s):": "96", + "BogoMIPS:": "5400.00", + "L2 cache:": "48 MiB (48 instances)", + "L3 cache:": "66 MiB (2 instances)", + "Stepping:": "4", + "L1d cache:": "1.5 MiB (48 instances)", + "L1i cache:": "1.5 MiB (48 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "46 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", + "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", + "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Core(s) per socket:": "24", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", + "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", + "Vulnerability Meltdown:": "Mitigation; PTI", + "Vulnerability Retbleed:": "Mitigation; IBRS", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", + "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": 0, + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0, + "num_wires": 4, + "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", + "witness_compiler": "c++" + }, + { + "circuit_id": "6f3bad22-1634-46d7-886e-832cba917fec", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-14T15:39:36.584Z", + "proving_scheme": "groth16", + "status": "Ready", + "compute_time": "P0DT00H00M07.664941S", + "compute_times": { + "total": 7.740619659423828, + "queued": 1.1192, + "clean_up": 0.0017648059874773026, + "create_cpp": 0.04447110556066036, + "file_setup": 0.24230228178203106, + "compile_cpp": 4.694819539785385, + "create_r1cs": 0.016316721215844154, + "save_results": 0.005714010447263718, + "get_r1cs_info": 0.0007064640522003174, + "groth16_setup": 1.4219826646149158, + "export_verification_key": 1.309614883735776, + "download_trusted_setup_file": 0.002441825345158577 + }, + "file_sizes": { + "total": 225418, + "circuit": 213240, + "total_gb": 0.000225418, + "total_mb": 0.225418, + "circuit.dat": 6176, + "code.tar.gz": 497, + "circuit.zkey": 2580, + "verification_key": 2925 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", + "Model:": "85", + "CPU(s):": "96", + "BogoMIPS:": "5400.00", + "L2 cache:": "48 MiB (48 instances)", + "L3 cache:": "66 MiB (2 instances)", + "Stepping:": "4", + "L1d cache:": "1.5 MiB (48 instances)", + "L1i cache:": "1.5 MiB (48 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "46 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", + "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", + "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Core(s) per socket:": "24", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", + "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", + "Vulnerability Meltdown:": "Mitigation; PTI", + "Vulnerability Retbleed:": "Mitigation; IBRS", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", + "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": 0, + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0, + "num_wires": 4, + "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", + "witness_compiler": "c++" + }, + { + "circuit_id": "d26ab648-29b6-43e8-aacf-40e14dfa4ed1", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-14T15:39:12.911Z", + "proving_scheme": "groth16", + "status": "Ready", + "compute_time": "P0DT00H00M07.596027S", + "compute_times": { + "total": 7.671294875442982, + "queued": 1.147463, + "clean_up": 0.0013887789100408554, + "create_cpp": 0.05159107968211174, + "file_setup": 0.23307767510414124, + "compile_cpp": 4.7507233787328005, + "create_r1cs": 0.01823563687503338, + "save_results": 0.005490930750966072, + "get_r1cs_info": 0.0010182727128267288, + "groth16_setup": 1.3135271780192852, + "export_verification_key": 1.2921632956713438, + "download_trusted_setup_file": 0.003589954227209091 + }, + "file_sizes": { + "total": 225418, + "circuit": 213240, + "total_gb": 0.000225418, + "total_mb": 0.225418, + "circuit.dat": 6176, + "code.tar.gz": 497, + "circuit.zkey": 2580, + "verification_key": 2925 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", + "Model:": "85", + "CPU(s):": "96", + "BogoMIPS:": "5400.00", + "L2 cache:": "48 MiB (48 instances)", + "L3 cache:": "66 MiB (2 instances)", + "Stepping:": "4", + "L1d cache:": "1.5 MiB (48 instances)", + "L1i cache:": "1.5 MiB (48 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "46 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", + "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", + "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Core(s) per socket:": "24", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", + "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", + "Vulnerability Meltdown:": "Mitigation; PTI", + "Vulnerability Retbleed:": "Mitigation; IBRS", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", + "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": 0, + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0, + "num_wires": 4, + "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", + "witness_compiler": "c++" + }, + { + "circuit_id": "d3a3e7a5-5b0b-459c-81cf-ae43938aa3c3", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-14T15:38:01.245Z", + "proving_scheme": "groth16", + "status": "Ready", + "compute_time": "P0DT00H00M07.820008S", + "compute_times": { + "total": 7.897290702909231, + "queued": 1.170189, + "clean_up": 0.0018852725625038147, + "create_cpp": 0.053761351853609085, + "file_setup": 0.24285616353154182, + "compile_cpp": 4.875218540430069, + "create_r1cs": 0.017158547416329384, + "save_results": 0.006690884009003639, + "get_r1cs_info": 0.0008476302027702332, + "groth16_setup": 1.337174404412508, + "export_verification_key": 1.3581416513770819, + "download_trusted_setup_file": 0.00307416170835495 + }, + "file_sizes": { + "total": 225418, + "circuit": 213240, + "total_gb": 0.000225418, + "total_mb": 0.225418, + "circuit.dat": 6176, + "code.tar.gz": 497, + "circuit.zkey": 2580, + "verification_key": 2925 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", + "Model:": "85", + "CPU(s):": "96", + "BogoMIPS:": "5400.00", + "L2 cache:": "48 MiB (48 instances)", + "L3 cache:": "66 MiB (2 instances)", + "Stepping:": "4", + "L1d cache:": "1.5 MiB (48 instances)", + "L1i cache:": "1.5 MiB (48 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "46 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", + "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", + "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Core(s) per socket:": "24", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", + "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", + "Vulnerability Meltdown:": "Mitigation; PTI", + "Vulnerability Retbleed:": "Mitigation; IBRS", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", + "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": 0, + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0, + "num_wires": 4, + "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", + "witness_compiler": "c++" + }, + { + "circuit_id": "327c28d6-d905-40a9-aa5e-910432b8c457", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-14T15:36:34.772Z", + "proving_scheme": "groth16", + "status": "Ready", + "compute_time": "P0DT00H00M07.386210S", + "compute_times": { + "total": 7.46240858733654, + "queued": 20.421796, + "clean_up": 0.0016153063625097275, + "create_cpp": 0.05553690902888775, + "file_setup": 0.2416877392679453, + "compile_cpp": 4.540888287127018, + "create_r1cs": 0.017148081213235855, + "save_results": 0.005492938682436943, + "get_r1cs_info": 0.0007535982877016068, + "groth16_setup": 1.2554643210023642, + "export_verification_key": 1.3404564801603556, + "download_trusted_setup_file": 0.002688312903046608 + }, + "file_sizes": { + "total": 225418, + "circuit": 213240, + "total_gb": 0.000225418, + "total_mb": 0.225418, + "circuit.dat": 6176, + "code.tar.gz": 497, + "circuit.zkey": 2580, + "verification_key": 2925 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", + "Model:": "85", + "CPU(s):": "96", + "BogoMIPS:": "5400.00", + "L2 cache:": "48 MiB (48 instances)", + "L3 cache:": "66 MiB (2 instances)", + "Stepping:": "4", + "L1d cache:": "1.5 MiB (48 instances)", + "L1i cache:": "1.5 MiB (48 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "46 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", + "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", + "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Core(s) per socket:": "24", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", + "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", + "Vulnerability Meltdown:": "Mitigation; PTI", + "Vulnerability Retbleed:": "Mitigation; IBRS", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", + "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": 0, + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0, + "num_wires": 4, + "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", + "witness_compiler": "c++" + }, + { + "circuit_id": "52a77185-bd08-4e1d-a040-068a7be5a72b", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-14T15:24:06.062Z", + "proving_scheme": "groth16", + "status": "Ready", + "compute_time": "P0DT00H00M07.640178S", + "compute_times": { + "total": 7.714155467227101, + "queued": 1.185042, + "clean_up": 0.0016178041696548462, + "create_cpp": 0.04732489213347435, + "file_setup": 0.24032527580857277, + "compile_cpp": 4.717082438990474, + "create_r1cs": 0.016816765069961548, + "save_results": 0.0056424327194690704, + "get_r1cs_info": 0.0007807277143001556, + "groth16_setup": 1.3203076552599669, + "export_verification_key": 1.36131626740098, + "download_trusted_setup_file": 0.00248648039996624 + }, + "file_sizes": { + "total": 225418, + "circuit": 213240, + "total_gb": 0.000225418, + "total_mb": 0.225418, + "circuit.dat": 6176, + "code.tar.gz": 497, + "circuit.zkey": 2580, + "verification_key": 2925 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", + "Model:": "85", + "CPU(s):": "96", + "BogoMIPS:": "5400.00", + "L2 cache:": "48 MiB (48 instances)", + "L3 cache:": "66 MiB (2 instances)", + "Stepping:": "4", + "L1d cache:": "1.5 MiB (48 instances)", + "L1i cache:": "1.5 MiB (48 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "46 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", + "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", + "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Core(s) per socket:": "24", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", + "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", + "Vulnerability Meltdown:": "Mitigation; PTI", + "Vulnerability Retbleed:": "Mitigation; IBRS", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", + "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": 0, + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0, + "num_wires": 4, + "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", + "witness_compiler": "c++" + }, + { + "circuit_id": "92b6ffef-2d23-4ea4-9c17-25449acf9f6d", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-14T15:12:25.903Z", + "proving_scheme": "groth16", + "status": "Ready", + "compute_time": "P0DT00H00M07.459452S", + "compute_times": { + "total": 7.538122421130538, + "queued": 3.182029, + "clean_up": 0.0019169263541698456, + "create_cpp": 0.05147097259759903, + "file_setup": 0.23234434984624386, + "compile_cpp": 4.633158722892404, + "create_r1cs": 0.015974245965480804, + "save_results": 0.0055649615824222565, + "get_r1cs_info": 0.0007752608507871628, + "groth16_setup": 1.2927527874708176, + "export_verification_key": 1.3012404087930918, + "download_trusted_setup_file": 0.002442318946123123 + }, + "file_sizes": { + "total": 225418, + "circuit": 213240, + "total_gb": 0.000225418, + "total_mb": 0.225418, + "circuit.dat": 6176, + "code.tar.gz": 497, + "circuit.zkey": 2580, + "verification_key": 2925 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", + "Model:": "85", + "CPU(s):": "96", + "BogoMIPS:": "5400.00", + "L2 cache:": "48 MiB (48 instances)", + "L3 cache:": "66 MiB (2 instances)", + "Stepping:": "4", + "L1d cache:": "1.5 MiB (48 instances)", + "L1i cache:": "1.5 MiB (48 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "46 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", + "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", + "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Core(s) per socket:": "24", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", + "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", + "Vulnerability Meltdown:": "Mitigation; PTI", + "Vulnerability Retbleed:": "Mitigation; IBRS", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", + "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": 0, + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0, + "num_wires": 4, + "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", + "witness_compiler": "c++" + }, + { + "circuit_id": "f5bf0783-4e8e-4d3a-8afb-3756d6630ed6", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-14T02:17:06.356Z", + "proving_scheme": "groth16", + "status": "Ready", + "compute_time": "P0DT00H00M07.767214S", + "compute_times": { + "total": 7.844439402222633, + "queued": 22.255549, + "clean_up": 0.001671966165304184, + "create_cpp": 0.04819011874496937, + "file_setup": 0.23547505028545856, + "compile_cpp": 4.71245345659554, + "create_r1cs": 0.017498936504125595, + "save_results": 0.005684111267328262, + "get_r1cs_info": 0.00042267516255378723, + "groth16_setup": 1.3792817536741495, + "export_verification_key": 1.4420029371976852, + "download_trusted_setup_file": 0.001202734187245369 + }, + "file_sizes": { + "total": 225424, + "circuit": 213240, + "total_gb": 0.000225424, + "total_mb": 0.225424, + "circuit.dat": 6176, + "code.tar.gz": 503, + "circuit.zkey": 2580, + "verification_key": 2925 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", + "Model:": "85", + "CPU(s):": "96", + "BogoMIPS:": "5400.00", + "L2 cache:": "48 MiB (48 instances)", + "L3 cache:": "66 MiB (2 instances)", + "Stepping:": "4", + "L1d cache:": "1.5 MiB (48 instances)", + "L1i cache:": "1.5 MiB (48 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "46 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", + "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", + "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Core(s) per socket:": "24", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", + "On-line CPU(s) list:": "0,1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41-49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89-95", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88", + "Vulnerability Meltdown:": "Mitigation; PTI", + "Vulnerability Retbleed:": "Mitigation; IBRS", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", + "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": 0, + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0, + "num_wires": 4, + "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", + "witness_compiler": "c++" + }, + { + "circuit_id": "895316d4-2a3d-4418-bb02-4d247bb31f42", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-14T02:17:06.305Z", + "proving_scheme": "groth16", + "status": "Ready", + "compute_time": "P0DT00H00M07.367716S", + "compute_times": { + "total": 7.445993509143591, + "queued": 19.4902, + "clean_up": 0.001679038628935814, + "create_cpp": 0.04941392503678799, + "file_setup": 0.2603658549487591, + "compile_cpp": 4.4457344226539135, + "create_r1cs": 0.015564171597361565, + "save_results": 0.005699107423424721, + "get_r1cs_info": 0.00044892914593219757, + "groth16_setup": 1.3399745263159275, + "export_verification_key": 1.3249822482466698, + "download_trusted_setup_file": 0.0015281010419130325 + }, + "file_sizes": { + "total": 225418, + "circuit": 213240, + "total_gb": 0.000225418, + "total_mb": 0.225418, + "circuit.dat": 6176, + "code.tar.gz": 497, + "circuit.zkey": 2580, + "verification_key": 2925 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", + "Model:": "85", + "CPU(s):": "96", + "BogoMIPS:": "5400.00", + "L2 cache:": "48 MiB (48 instances)", + "L3 cache:": "66 MiB (2 instances)", + "Stepping:": "4", + "L1d cache:": "1.5 MiB (48 instances)", + "L1i cache:": "1.5 MiB (48 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "46 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", + "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", + "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Core(s) per socket:": "24", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", + "On-line CPU(s) list:": "0,1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41-49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89-95", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88", + "Vulnerability Meltdown:": "Mitigation; PTI", + "Vulnerability Retbleed:": "Mitigation; IBRS", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", + "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": 0, + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0, + "num_wires": 4, + "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", + "witness_compiler": "c++" + }, + { + "circuit_id": "be9aeee2-67a1-40cc-b2a9-31c749baa91a", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-14T02:17:06.264Z", + "proving_scheme": "groth16", + "status": "Ready", + "compute_time": "P0DT00H00M07.440114S", + "compute_times": { + "total": 7.517095539718866, + "queued": 17.354408, + "clean_up": 0.0018942803144454956, + "create_cpp": 0.055966123938560486, + "file_setup": 0.23165968619287014, + "compile_cpp": 4.604835856705904, + "create_r1cs": 0.016073141247034073, + "save_results": 0.005840808153152466, + "get_r1cs_info": 0.0005646403878927231, + "groth16_setup": 1.3124119993299246, + "export_verification_key": 1.2851601000875235, + "download_trusted_setup_file": 0.002033783122897148 + }, + "file_sizes": { + "total": 225450, + "circuit": 213240, + "total_gb": 0.00022545, + "total_mb": 0.22545, + "circuit.dat": 6176, + "code.tar.gz": 529, + "circuit.zkey": 2580, + "verification_key": 2925 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tgz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", + "Model:": "85", + "CPU(s):": "96", + "BogoMIPS:": "5400.00", + "L2 cache:": "48 MiB (48 instances)", + "L3 cache:": "66 MiB (2 instances)", + "Stepping:": "4", + "L1d cache:": "1.5 MiB (48 instances)", + "L1i cache:": "1.5 MiB (48 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "46 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", + "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", + "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Core(s) per socket:": "24", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", + "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", + "Vulnerability Meltdown:": "Mitigation; PTI", + "Vulnerability Retbleed:": "Mitigation; IBRS", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", + "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": 0, + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0, + "num_wires": 4, + "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", + "witness_compiler": "c++" + }, + { + "circuit_id": "65fe2793-9973-4c6e-8802-d0788c536501", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-14T01:35:42.731Z", + "proving_scheme": "groth16", + "status": "Ready", + "compute_time": "P0DT00H00M07.704094S", + "compute_times": { + "total": 7.780933722853661, + "queued": 1.20041, + "clean_up": 0.0017544794827699661, + "create_cpp": 0.047739313915371895, + "file_setup": 0.25539655797183514, + "compile_cpp": 4.67063057795167, + "create_r1cs": 0.01837228797376156, + "save_results": 0.005115482956171036, + "get_r1cs_info": 0.0008046850562095642, + "groth16_setup": 1.3312513139098883, + "export_verification_key": 1.4467235822230577, + "download_trusted_setup_file": 0.0026854518800973892 + }, + "file_sizes": { + "total": 225424, + "circuit": 213240, + "total_gb": 0.000225424, + "total_mb": 0.225424, + "circuit.dat": 6176, + "code.tar.gz": 503, + "circuit.zkey": 2580, + "verification_key": 2925 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", + "Model:": "85", + "CPU(s):": "96", + "BogoMIPS:": "5400.00", + "L2 cache:": "48 MiB (48 instances)", + "L3 cache:": "66 MiB (2 instances)", + "Stepping:": "4", + "L1d cache:": "1.5 MiB (48 instances)", + "L1i cache:": "1.5 MiB (48 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "46 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", + "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", + "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Core(s) per socket:": "24", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", + "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", + "Vulnerability Meltdown:": "Mitigation; PTI", + "Vulnerability Retbleed:": "Mitigation; IBRS", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", + "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": 0, + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0, + "num_wires": 4, + "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", + "witness_compiler": "c++" + }, + { + "circuit_id": "ec20c2f1-63b4-453b-b631-042f1dace286", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-14T01:35:42.477Z", + "proving_scheme": "groth16", + "status": "Ready", + "compute_time": "P0DT00H00M07.539209S", + "compute_times": { + "total": 7.630237089470029, + "queued": 1.20364, + "clean_up": 0.0018465593457221985, + "create_cpp": 0.048426778987050056, + "file_setup": 0.28575040958821774, + "compile_cpp": 4.522350315004587, + "create_r1cs": 0.010585671290755272, + "save_results": 0.00592038594186306, + "get_r1cs_info": 0.000683952122926712, + "groth16_setup": 1.3668177835643291, + "export_verification_key": 1.3847495634108782, + "download_trusted_setup_file": 0.0025108084082603455 + }, + "file_sizes": { + "total": 225450, + "circuit": 213240, + "total_gb": 0.00022545, + "total_mb": 0.22545, + "circuit.dat": 6176, + "code.tar.gz": 529, + "circuit.zkey": 2580, + "verification_key": 2925 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tgz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", + "Model:": "85", + "CPU(s):": "96", + "BogoMIPS:": "5400.00", + "L2 cache:": "48 MiB (48 instances)", + "L3 cache:": "66 MiB (2 instances)", + "Stepping:": "4", + "L1d cache:": "1.5 MiB (48 instances)", + "L1i cache:": "1.5 MiB (48 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "46 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", + "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", + "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Core(s) per socket:": "24", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", + "On-line CPU(s) list:": "0,1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41-49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89-95", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88", + "Vulnerability Meltdown:": "Mitigation; PTI", + "Vulnerability Retbleed:": "Mitigation; IBRS", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", + "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": 0, + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0, + "num_wires": 4, + "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", + "witness_compiler": "c++" + }, + { + "circuit_id": "f550240d-ab41-46fc-8349-ef5dd2b6ae72", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-14T01:35:42.441Z", + "proving_scheme": "groth16", + "status": "Ready", + "compute_time": "P0DT00H00M07.547238S", + "compute_times": { + "total": 7.629827946424484, + "queued": 1.057625, + "clean_up": 0.0015633665025234222, + "create_cpp": 0.056376999244093895, + "file_setup": 0.2554791755974293, + "compile_cpp": 4.59183656424284, + "create_r1cs": 0.014426013454794884, + "save_results": 0.005605714395642281, + "get_r1cs_info": 0.0006720162928104401, + "groth16_setup": 1.3423564583063126, + "export_verification_key": 1.3587531484663486, + "download_trusted_setup_file": 0.002422267571091652 + }, + "file_sizes": { + "total": 225418, + "circuit": 213240, + "total_gb": 0.000225418, + "total_mb": 0.225418, + "circuit.dat": 6176, + "code.tar.gz": 497, + "circuit.zkey": 2580, + "verification_key": 2925 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", + "Model:": "85", + "CPU(s):": "96", + "BogoMIPS:": "5400.00", + "L2 cache:": "48 MiB (48 instances)", + "L3 cache:": "66 MiB (2 instances)", + "Stepping:": "4", + "L1d cache:": "1.5 MiB (48 instances)", + "L1i cache:": "1.5 MiB (48 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "46 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", + "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", + "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Core(s) per socket:": "24", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", + "On-line CPU(s) list:": "0,1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41-49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89-95", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88", + "Vulnerability Meltdown:": "Mitigation; PTI", + "Vulnerability Retbleed:": "Mitigation; IBRS", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", + "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": 0, + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0, + "num_wires": 4, + "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", + "witness_compiler": "c++" + }, + { + "circuit_id": "e385fc9a-6678-4436-a4d9-7b6207cdec1e", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-14T01:34:48.278Z", + "proving_scheme": "groth16", + "status": "Ready", + "compute_time": "P0DT00H00M07.602105S", + "compute_times": { + "total": 7.6787131037563086, + "queued": 28.269221, + "clean_up": 0.0008335374295711517, + "create_cpp": 0.05295123904943466, + "file_setup": 0.24620787054300308, + "compile_cpp": 4.666990481317043, + "create_r1cs": 0.017643820494413376, + "save_results": 0.006149968132376671, + "get_r1cs_info": 0.0006770137697458267, + "groth16_setup": 1.286754585802555, + "export_verification_key": 1.3974271193146706, + "download_trusted_setup_file": 0.0024820510298013687 + }, + "file_sizes": { + "total": 225418, + "circuit": 213240, + "total_gb": 0.000225418, + "total_mb": 0.225418, + "circuit.dat": 6176, + "code.tar.gz": 497, + "circuit.zkey": 2580, + "verification_key": 2925 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", + "Model:": "85", + "CPU(s):": "96", + "BogoMIPS:": "5400.00", + "L2 cache:": "48 MiB (48 instances)", + "L3 cache:": "66 MiB (2 instances)", + "Stepping:": "4", + "L1d cache:": "1.5 MiB (48 instances)", + "L1i cache:": "1.5 MiB (48 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "46 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", + "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", + "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Core(s) per socket:": "24", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", + "On-line CPU(s) list:": "0,1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41-49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89-95", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88", + "Vulnerability Meltdown:": "Mitigation; PTI", + "Vulnerability Retbleed:": "Mitigation; IBRS", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", + "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": 0, + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0, + "num_wires": 4, + "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", + "witness_compiler": "c++" + }, + { + "circuit_id": "c0a257a6-6595-4d8f-af76-3c72ccb8124c", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-14T01:34:47.881Z", + "proving_scheme": "groth16", + "status": "Ready", + "compute_time": "P0DT00H00M07.648258S", + "compute_times": { + "total": 7.727745875716209, + "queued": 23.412292, + "clean_up": 0.0017776917666196823, + "create_cpp": 0.0479858573526144, + "file_setup": 0.2476426586508751, + "compile_cpp": 4.7762017995119095, + "create_r1cs": 0.015666168183088303, + "save_results": 0.005719615146517754, + "get_r1cs_info": 0.0005191490054130554, + "groth16_setup": 1.3373233694583178, + "export_verification_key": 1.2932734712958336, + "download_trusted_setup_file": 0.0012765545397996902 + }, + "file_sizes": { + "total": 225424, + "circuit": 213240, + "total_gb": 0.000225424, + "total_mb": 0.225424, + "circuit.dat": 6176, + "code.tar.gz": 503, + "circuit.zkey": 2580, + "verification_key": 2925 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", + "Model:": "85", + "CPU(s):": "96", + "BogoMIPS:": "5400.00", + "L2 cache:": "48 MiB (48 instances)", + "L3 cache:": "66 MiB (2 instances)", + "Stepping:": "4", + "L1d cache:": "1.5 MiB (48 instances)", + "L1i cache:": "1.5 MiB (48 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "46 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", + "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", + "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Core(s) per socket:": "24", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", + "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", + "Vulnerability Meltdown:": "Mitigation; PTI", + "Vulnerability Retbleed:": "Mitigation; IBRS", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", + "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": 0, + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0, + "num_wires": 4, + "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", + "witness_compiler": "c++" + }, + { + "circuit_id": "17179e01-d7c4-4aea-aa1a-992f916bdee2", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-14T01:34:47.812Z", + "proving_scheme": "groth16", + "status": "Ready", + "compute_time": "P0DT00H00M07.917575S", + "compute_times": { + "total": 7.996331673115492, + "queued": 14.301244, + "clean_up": 0.001385565847158432, + "create_cpp": 0.05693238601088524, + "file_setup": 0.24305696785449982, + "compile_cpp": 4.886592995375395, + "create_r1cs": 0.016436800360679626, + "save_results": 0.0048583559691905975, + "get_r1cs_info": 0.0007434748113155365, + "groth16_setup": 1.4628947488963604, + "export_verification_key": 1.320095032453537, + "download_trusted_setup_file": 0.002690603956580162 + }, + "file_sizes": { + "total": 225450, + "circuit": 213240, + "total_gb": 0.00022545, + "total_mb": 0.22545, + "circuit.dat": 6176, + "code.tar.gz": 529, + "circuit.zkey": 2580, + "verification_key": 2925 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tgz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", + "Model:": "85", + "CPU(s):": "96", + "BogoMIPS:": "5400.00", + "L2 cache:": "48 MiB (48 instances)", + "L3 cache:": "66 MiB (2 instances)", + "Stepping:": "4", + "L1d cache:": "1.5 MiB (48 instances)", + "L1i cache:": "1.5 MiB (48 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "46 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", + "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", + "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Core(s) per socket:": "24", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", + "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", + "Vulnerability Meltdown:": "Mitigation; PTI", + "Vulnerability Retbleed:": "Mitigation; IBRS", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", + "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": 0, + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0, + "num_wires": 4, + "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", + "witness_compiler": "c++" + }, + { + "circuit_id": "97c1188b-940e-495c-b19a-95136ca94651", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-13T22:14:07.689Z", + "proving_scheme": "groth16", + "status": "Ready", + "compute_time": "P0DT00H00M07.579924S", + "compute_times": { + "total": 7.688783111050725, + "queued": 19.081671, + "clean_up": 0.0016204454004764557, + "create_cpp": 0.04679172858595848, + "file_setup": 0.29103851318359375, + "compile_cpp": 4.59976408816874, + "create_r1cs": 0.01832420565187931, + "save_results": 0.0057008713483810425, + "get_r1cs_info": 0.0007570423185825348, + "groth16_setup": 1.3156583420932293, + "export_verification_key": 1.4062066301703453, + "download_trusted_setup_file": 0.0025102216750383377 + }, + "file_sizes": { + "total": 225419, + "circuit": 213240, + "total_gb": 0.000225419, + "total_mb": 0.225419, + "circuit.dat": 6176, + "code.tar.gz": 498, + "circuit.zkey": 2580, + "verification_key": 2925 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", + "Model:": "85", + "CPU(s):": "96", + "BogoMIPS:": "5400.00", + "L2 cache:": "48 MiB (48 instances)", + "L3 cache:": "66 MiB (2 instances)", + "Stepping:": "4", + "L1d cache:": "1.5 MiB (48 instances)", + "L1i cache:": "1.5 MiB (48 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "46 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", + "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", + "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Core(s) per socket:": "24", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", + "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", + "Vulnerability Meltdown:": "Mitigation; PTI", + "Vulnerability Retbleed:": "Mitigation; IBRS", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", + "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": 0, + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0, + "num_wires": 4, + "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", + "witness_compiler": "c++" + }, + { + "circuit_id": "f171ba6b-3c6e-45ab-8978-cc81b2591fe2", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-13T21:56:00.914Z", + "proving_scheme": "groth16", + "status": "Ready", + "compute_time": "P0DT00H00M07.636625S", + "compute_times": { + "total": 7.707771621644497, + "queued": 18.700163, + "clean_up": 0.0018135719001293182, + "create_cpp": 0.04718630388379097, + "file_setup": 0.24202751740813255, + "compile_cpp": 4.60657000541687, + "create_r1cs": 0.01767110638320446, + "save_results": 0.006701948121190071, + "get_r1cs_info": 0.0008154623210430145, + "groth16_setup": 1.4166238810867071, + "export_verification_key": 1.3650648556649685, + "download_trusted_setup_file": 0.0026601888239383698 + }, + "file_sizes": { + "total": 225418, + "circuit": 213240, + "total_gb": 0.000225418, + "total_mb": 0.225418, + "circuit.dat": 6176, + "code.tar.gz": 497, + "circuit.zkey": 2580, + "verification_key": 2925 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", + "Model:": "85", + "CPU(s):": "96", + "BogoMIPS:": "5400.00", + "L2 cache:": "48 MiB (48 instances)", + "L3 cache:": "66 MiB (2 instances)", + "Stepping:": "4", + "L1d cache:": "1.5 MiB (48 instances)", + "L1i cache:": "1.5 MiB (48 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "46 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", + "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", + "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Core(s) per socket:": "24", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", + "On-line CPU(s) list:": "0,1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41-49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89-95", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88", + "Vulnerability Meltdown:": "Mitigation; PTI", + "Vulnerability Retbleed:": "Mitigation; IBRS", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", + "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": 0, + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0, + "num_wires": 4, + "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", + "witness_compiler": "c++" + }, + { + "circuit_id": "c5e01da7-48f8-41cc-b451-e3dadd91082f", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-13T21:56:00.471Z", + "proving_scheme": "groth16", + "status": "Ready", + "compute_time": "P0DT00H00M07.594002S", + "compute_times": { + "total": 7.674397809430957, + "queued": 17.546896, + "clean_up": 0.0017005838453769684, + "create_cpp": 0.04909280128777027, + "file_setup": 0.2650355380028486, + "compile_cpp": 4.535461347550154, + "create_r1cs": 0.01683916337788105, + "save_results": 0.005601212382316589, + "get_r1cs_info": 0.0004042927175760269, + "groth16_setup": 1.4130164682865143, + "export_verification_key": 1.3854157458990812, + "download_trusted_setup_file": 0.0012020468711853027 + }, + "file_sizes": { + "total": 225450, + "circuit": 213240, + "total_gb": 0.00022545, + "total_mb": 0.22545, + "circuit.dat": 6176, + "code.tar.gz": 529, + "circuit.zkey": 2580, + "verification_key": 2925 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tgz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", + "Model:": "85", + "CPU(s):": "96", + "BogoMIPS:": "5400.00", + "L2 cache:": "48 MiB (48 instances)", + "L3 cache:": "66 MiB (2 instances)", + "Stepping:": "4", + "L1d cache:": "1.5 MiB (48 instances)", + "L1i cache:": "1.5 MiB (48 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "46 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", + "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", + "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Core(s) per socket:": "24", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", + "On-line CPU(s) list:": "0,1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41-49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89-95", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88", + "Vulnerability Meltdown:": "Mitigation; PTI", + "Vulnerability Retbleed:": "Mitigation; IBRS", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", + "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": 0, + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0, + "num_wires": 4, + "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", + "witness_compiler": "c++" + }, + { + "circuit_id": "7b4d64f7-9eb1-43ea-88da-ee0c30a30dc0", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-13T21:56:00.454Z", + "proving_scheme": "groth16", + "status": "Ready", + "compute_time": "P0DT00H00M07.596317S", + "compute_times": { + "total": 7.6730455961078405, + "queued": 15.290082, + "clean_up": 0.001669473946094513, + "create_cpp": 0.05485839210450649, + "file_setup": 0.26459758542478085, + "compile_cpp": 4.7679917477071285, + "create_r1cs": 0.011294171214103699, + "save_results": 0.005053173750638962, + "get_r1cs_info": 0.000985546037554741, + "groth16_setup": 1.249212957918644, + "export_verification_key": 1.313942413777113, + "download_trusted_setup_file": 0.0028024110943078995 + }, + "file_sizes": { + "total": 225424, + "circuit": 213240, + "total_gb": 0.000225424, + "total_mb": 0.225424, + "circuit.dat": 6176, + "code.tar.gz": 503, + "circuit.zkey": 2580, + "verification_key": 2925 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", + "Model:": "85", + "CPU(s):": "96", + "BogoMIPS:": "5400.00", + "L2 cache:": "48 MiB (48 instances)", + "L3 cache:": "66 MiB (2 instances)", + "Stepping:": "4", + "L1d cache:": "1.5 MiB (48 instances)", + "L1i cache:": "1.5 MiB (48 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "46 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", + "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", + "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Core(s) per socket:": "24", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", + "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", + "Vulnerability Meltdown:": "Mitigation; PTI", + "Vulnerability Retbleed:": "Mitigation; IBRS", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", + "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": 0, + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0, + "num_wires": 4, + "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", + "witness_compiler": "c++" + }, + { + "circuit_id": "cdd9f705-bc15-43bb-949e-3717f72d942b", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-13T21:38:26.210Z", + "proving_scheme": "groth16", + "status": "Ready", + "compute_time": "P0DT00H00M07.677959S", + "compute_times": { + "total": 7.7533275205641985, + "queued": 18.19898, + "clean_up": 0.0016758590936660767, + "create_cpp": 0.04743916355073452, + "file_setup": 0.22825423069298267, + "compile_cpp": 4.849137723445892, + "create_r1cs": 0.017714163288474083, + "save_results": 0.005707431584596634, + "get_r1cs_info": 0.0005600731819868088, + "groth16_setup": 1.2724982649087906, + "export_verification_key": 1.3279783483594656, + "download_trusted_setup_file": 0.001912679523229599 + }, + "file_sizes": { + "total": 225450, + "circuit": 213240, + "total_gb": 0.00022545, + "total_mb": 0.22545, + "circuit.dat": 6176, + "code.tar.gz": 529, + "circuit.zkey": 2580, + "verification_key": 2925 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tgz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", + "Model:": "85", + "CPU(s):": "96", + "BogoMIPS:": "5400.00", + "L2 cache:": "48 MiB (48 instances)", + "L3 cache:": "66 MiB (2 instances)", + "Stepping:": "4", + "L1d cache:": "1.5 MiB (48 instances)", + "L1i cache:": "1.5 MiB (48 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "46 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", + "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", + "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Core(s) per socket:": "24", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", + "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", + "Vulnerability Meltdown:": "Mitigation; PTI", + "Vulnerability Retbleed:": "Mitigation; IBRS", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", + "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": 0, + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0, + "num_wires": 4, + "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", + "witness_compiler": "c++" + }, + { + "circuit_id": "4500e242-4807-4e58-8c61-51890f37a199", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-13T21:38:25.812Z", + "proving_scheme": "groth16", + "status": "Ready", + "compute_time": "P0DT00H00M07.569673S", + "compute_times": { + "total": 7.647986855357885, + "queued": 9.85944, + "clean_up": 0.0016725938767194748, + "create_cpp": 0.052060317248106, + "file_setup": 0.2424705233424902, + "compile_cpp": 4.573579087853432, + "create_r1cs": 0.016123183071613312, + "save_results": 0.005695518106222153, + "get_r1cs_info": 0.0006785281002521515, + "groth16_setup": 1.393597211688757, + "export_verification_key": 1.3591100927442312, + "download_trusted_setup_file": 0.002507256343960762 + }, + "file_sizes": { + "total": 225418, + "circuit": 213240, + "total_gb": 0.000225418, + "total_mb": 0.225418, + "circuit.dat": 6176, + "code.tar.gz": 497, + "circuit.zkey": 2580, + "verification_key": 2925 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", + "Model:": "85", + "CPU(s):": "96", + "BogoMIPS:": "5400.00", + "L2 cache:": "48 MiB (48 instances)", + "L3 cache:": "66 MiB (2 instances)", + "Stepping:": "4", + "L1d cache:": "1.5 MiB (48 instances)", + "L1i cache:": "1.5 MiB (48 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "46 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", + "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", + "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Core(s) per socket:": "24", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", + "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", + "Vulnerability Meltdown:": "Mitigation; PTI", + "Vulnerability Retbleed:": "Mitigation; IBRS", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", + "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": 0, + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0, + "num_wires": 4, + "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", + "witness_compiler": "c++" + }, + { + "circuit_id": "fcc7ffbc-e73d-442d-b2d7-d668f4ddb8f8", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-13T21:38:25.748Z", + "proving_scheme": "groth16", + "status": "Ready", + "compute_time": "P0DT00H00M07.519034S", + "compute_times": { + "total": 7.592722037807107, + "queued": 1.189058, + "clean_up": 0.0011803433299064636, + "create_cpp": 0.04865703918039799, + "file_setup": 0.23373384028673172, + "compile_cpp": 4.677073501050472, + "create_r1cs": 0.017674315720796585, + "save_results": 0.006435971707105637, + "get_r1cs_info": 0.0009603966027498245, + "groth16_setup": 1.317440578714013, + "export_verification_key": 1.2857090160250664, + "download_trusted_setup_file": 0.003442632034420967 + }, + "file_sizes": { + "total": 225424, + "circuit": 213240, + "total_gb": 0.000225424, + "total_mb": 0.225424, + "circuit.dat": 6176, + "code.tar.gz": 503, + "circuit.zkey": 2580, + "verification_key": 2925 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", + "Model:": "85", + "CPU(s):": "96", + "BogoMIPS:": "5400.00", + "L2 cache:": "48 MiB (48 instances)", + "L3 cache:": "66 MiB (2 instances)", + "Stepping:": "4", + "L1d cache:": "1.5 MiB (48 instances)", + "L1i cache:": "1.5 MiB (48 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "46 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", + "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", + "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Core(s) per socket:": "24", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", + "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", + "Vulnerability Meltdown:": "Mitigation; PTI", + "Vulnerability Retbleed:": "Mitigation; IBRS", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", + "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": 0, + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0, + "num_wires": 4, + "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", + "witness_compiler": "c++" + }, + { + "circuit_id": "148d24da-5577-4b99-829e-7a37ba6e1ce5", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-13T21:36:51.312Z", + "proving_scheme": "groth16", + "status": "Ready", + "compute_time": "P0DT00H00M07.909233S", + "compute_times": { + "total": 7.984679609537125, + "queued": 1.116588, + "clean_up": 0.0015947632491588593, + "create_cpp": 0.04699246771633625, + "file_setup": 0.2352718897163868, + "compile_cpp": 4.984196016564965, + "create_r1cs": 0.01876012235879898, + "save_results": 0.006016256287693977, + "get_r1cs_info": 0.0008815042674541473, + "groth16_setup": 1.314208835363388, + "export_verification_key": 1.37380082719028, + "download_trusted_setup_file": 0.00247078575193882 + }, + "file_sizes": { + "total": 225450, + "circuit": 213240, + "total_gb": 0.00022545, + "total_mb": 0.22545, + "circuit.dat": 6176, + "code.tar.gz": 529, + "circuit.zkey": 2580, + "verification_key": 2925 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tgz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", + "Model:": "85", + "CPU(s):": "96", + "BogoMIPS:": "5400.00", + "L2 cache:": "48 MiB (48 instances)", + "L3 cache:": "66 MiB (2 instances)", + "Stepping:": "4", + "L1d cache:": "1.5 MiB (48 instances)", + "L1i cache:": "1.5 MiB (48 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "46 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", + "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", + "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Core(s) per socket:": "24", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", + "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", + "Vulnerability Meltdown:": "Mitigation; PTI", + "Vulnerability Retbleed:": "Mitigation; IBRS", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", + "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": 0, + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0, + "num_wires": 4, + "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", + "witness_compiler": "c++" + }, + { + "circuit_id": "27f2cb36-588e-4279-a7db-f71bce8fd3ea", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-13T21:36:25.925Z", + "proving_scheme": "groth16", + "status": "Ready", + "compute_time": "P0DT00H00M07.632335S", + "compute_times": { + "total": 7.709978420287371, + "queued": 1.211208, + "clean_up": 0.0013846959918737411, + "create_cpp": 0.05810563452541828, + "file_setup": 0.24006458930671215, + "compile_cpp": 4.666282197460532, + "create_r1cs": 0.017120130360126495, + "save_results": 0.005914704874157906, + "get_r1cs_info": 0.000698436051607132, + "groth16_setup": 1.4062776304781437, + "export_verification_key": 1.3112494498491287, + "download_trusted_setup_file": 0.0024253148585557938 + }, + "file_sizes": { + "total": 225450, + "circuit": 213240, + "total_gb": 0.00022545, + "total_mb": 0.22545, + "circuit.dat": 6176, + "code.tar.gz": 529, + "circuit.zkey": 2580, + "verification_key": 2925 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tgz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", + "Model:": "85", + "CPU(s):": "96", + "BogoMIPS:": "5400.00", + "L2 cache:": "48 MiB (48 instances)", + "L3 cache:": "66 MiB (2 instances)", + "Stepping:": "4", + "L1d cache:": "1.5 MiB (48 instances)", + "L1i cache:": "1.5 MiB (48 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "46 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", + "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", + "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Core(s) per socket:": "24", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", + "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", + "Vulnerability Meltdown:": "Mitigation; PTI", + "Vulnerability Retbleed:": "Mitigation; IBRS", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", + "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": 0, + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0, + "num_wires": 4, + "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", + "witness_compiler": "c++" + }, + { + "circuit_id": "4b6bf726-5d2f-4e08-b9a6-fcd3ed910235", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-13T21:33:40.483Z", + "proving_scheme": "groth16", + "status": "Ready", + "compute_time": "P0DT00H00M07.706300S", + "compute_times": { + "total": 7.782388724386692, + "queued": 1.17897, + "clean_up": 0.0017512757331132889, + "create_cpp": 0.05008737929165363, + "file_setup": 0.2461202573031187, + "compile_cpp": 4.85274338722229, + "create_r1cs": 0.016811428591609, + "save_results": 0.00556546077132225, + "get_r1cs_info": 0.0006687957793474197, + "groth16_setup": 1.2804529499262571, + "export_verification_key": 1.3252677004784346, + "download_trusted_setup_file": 0.0024891532957553864 + }, + "file_sizes": { + "total": 225450, + "circuit": 213240, + "total_gb": 0.00022545, + "total_mb": 0.22545, + "circuit.dat": 6176, + "code.tar.gz": 529, + "circuit.zkey": 2580, + "verification_key": 2925 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tgz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", + "Model:": "85", + "CPU(s):": "96", + "BogoMIPS:": "5400.00", + "L2 cache:": "48 MiB (48 instances)", + "L3 cache:": "66 MiB (2 instances)", + "Stepping:": "4", + "L1d cache:": "1.5 MiB (48 instances)", + "L1i cache:": "1.5 MiB (48 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "46 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", + "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", + "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Core(s) per socket:": "24", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", + "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", + "Vulnerability Meltdown:": "Mitigation; PTI", + "Vulnerability Retbleed:": "Mitigation; IBRS", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", + "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": 0, + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0, + "num_wires": 4, + "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", + "witness_compiler": "c++" + }, + { + "circuit_id": "a2d7e23a-f3c6-49fa-8a02-e26e57348317", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-13T21:32:49.211Z", + "proving_scheme": "groth16", + "status": "Ready", + "compute_time": "P0DT00H00M07.470841S", + "compute_times": { + "total": 7.549792183563113, + "queued": 1.20048, + "clean_up": 0.0015842076390981674, + "create_cpp": 0.054698651656508446, + "file_setup": 0.24776330403983593, + "compile_cpp": 4.5193129144608974, + "create_r1cs": 0.010665420442819595, + "save_results": 0.005249980837106705, + "get_r1cs_info": 0.0006738137453794479, + "groth16_setup": 1.3397254347801208, + "export_verification_key": 1.3671844005584717, + "download_trusted_setup_file": 0.0024946723133325577 + }, + "file_sizes": { + "total": 225450, + "circuit": 213240, + "total_gb": 0.00022545, + "total_mb": 0.22545, + "circuit.dat": 6176, + "code.tar.gz": 529, + "circuit.zkey": 2580, + "verification_key": 2925 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tgz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", + "Model:": "85", + "CPU(s):": "96", + "BogoMIPS:": "5400.00", + "L2 cache:": "48 MiB (48 instances)", + "L3 cache:": "66 MiB (2 instances)", + "Stepping:": "4", + "L1d cache:": "1.5 MiB (48 instances)", + "L1i cache:": "1.5 MiB (48 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "46 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", + "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", + "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Core(s) per socket:": "24", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", + "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", + "Vulnerability Meltdown:": "Mitigation; PTI", + "Vulnerability Retbleed:": "Mitigation; IBRS", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", + "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": 0, + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0, + "num_wires": 4, + "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", + "witness_compiler": "c++" + }, + { + "circuit_id": "686340bc-d045-4229-ba44-87f651888ea1", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-13T21:31:13.485Z", + "proving_scheme": "groth16", + "status": "Ready", + "compute_time": "P0DT00H00M07.760798S", + "compute_times": { + "total": 7.836315272375941, + "queued": 1.203562, + "clean_up": 0.0016642827540636063, + "create_cpp": 0.05337905138731003, + "file_setup": 0.23328274302184582, + "compile_cpp": 4.752988923341036, + "create_r1cs": 0.010774670168757439, + "save_results": 0.0066010840237140656, + "get_r1cs_info": 0.0005256552249193192, + "groth16_setup": 1.285637954249978, + "export_verification_key": 1.489252969622612, + "download_trusted_setup_file": 0.0017739832401275635 + }, + "file_sizes": { + "total": 225450, + "circuit": 213240, + "total_gb": 0.00022545, + "total_mb": 0.22545, + "circuit.dat": 6176, + "code.tar.gz": 529, + "circuit.zkey": 2580, + "verification_key": 2925 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tgz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", + "Model:": "85", + "CPU(s):": "96", + "BogoMIPS:": "5400.00", + "L2 cache:": "48 MiB (48 instances)", + "L3 cache:": "66 MiB (2 instances)", + "Stepping:": "4", + "L1d cache:": "1.5 MiB (48 instances)", + "L1i cache:": "1.5 MiB (48 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "46 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", + "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", + "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Core(s) per socket:": "24", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", + "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", + "Vulnerability Meltdown:": "Mitigation; PTI", + "Vulnerability Retbleed:": "Mitigation; IBRS", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", + "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": 0, + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0, + "num_wires": 4, + "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", + "witness_compiler": "c++" + }, + { + "circuit_id": "218bfbe6-9e50-4702-a1e5-77a1c8f3d8ed", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-13T21:30:35.803Z", + "proving_scheme": "groth16", + "status": "Ready", + "compute_time": "P0DT00H00M07.456547S", + "compute_times": { + "total": 7.544302523136139, + "queued": 1.161186, + "clean_up": 0.0016966871917247772, + "create_cpp": 0.055683160200715065, + "file_setup": 0.2663968615233898, + "compile_cpp": 4.470876835286617, + "create_r1cs": 0.016854027286171913, + "save_results": 0.0059831272810697556, + "get_r1cs_info": 0.0006471928209066391, + "groth16_setup": 1.381587591022253, + "export_verification_key": 1.3415857050567865, + "download_trusted_setup_file": 0.0023956000804901123 + }, + "file_sizes": { + "total": 225450, + "circuit": 213240, + "total_gb": 0.00022545, + "total_mb": 0.22545, + "circuit.dat": 6176, + "code.tar.gz": 529, + "circuit.zkey": 2580, + "verification_key": 2925 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tgz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", + "Model:": "85", + "CPU(s):": "96", + "BogoMIPS:": "5400.00", + "L2 cache:": "48 MiB (48 instances)", + "L3 cache:": "66 MiB (2 instances)", + "Stepping:": "4", + "L1d cache:": "1.5 MiB (48 instances)", + "L1i cache:": "1.5 MiB (48 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "46 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", + "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", + "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Core(s) per socket:": "24", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", + "On-line CPU(s) list:": "0,1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41-49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89-95", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88", + "Vulnerability Meltdown:": "Mitigation; PTI", + "Vulnerability Retbleed:": "Mitigation; IBRS", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", + "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": 0, + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0, + "num_wires": 4, + "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", + "witness_compiler": "c++" + }, + { + "circuit_id": "17b13d5a-87b1-4923-a41b-8dfac41598e6", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-13T21:26:12.192Z", + "proving_scheme": "groth16", + "status": "Ready", + "compute_time": "P0DT00H00M07.534251S", + "compute_times": { + "total": 7.610159991309047, + "queued": 1.074114, + "clean_up": 0.0017370078712701797, + "create_cpp": 0.048391491174697876, + "file_setup": 0.29270106740295887, + "compile_cpp": 4.538070844486356, + "create_r1cs": 0.01847922056913376, + "save_results": 0.005488520488142967, + "get_r1cs_info": 0.000662611797451973, + "groth16_setup": 1.36158980242908, + "export_verification_key": 1.3403133414685726, + "download_trusted_setup_file": 0.0024301279336214066 + }, + "file_sizes": { + "total": 225419, + "circuit": 213240, + "total_gb": 0.000225419, + "total_mb": 0.225419, + "circuit.dat": 6176, + "code.tar.gz": 498, + "circuit.zkey": 2580, + "verification_key": 2925 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", + "Model:": "85", + "CPU(s):": "96", + "BogoMIPS:": "5400.00", + "L2 cache:": "48 MiB (48 instances)", + "L3 cache:": "66 MiB (2 instances)", + "Stepping:": "4", + "L1d cache:": "1.5 MiB (48 instances)", + "L1i cache:": "1.5 MiB (48 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "46 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", + "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", + "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Core(s) per socket:": "24", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", + "On-line CPU(s) list:": "0,1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41-49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89-95", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88", + "Vulnerability Meltdown:": "Mitigation; PTI", + "Vulnerability Retbleed:": "Mitigation; IBRS", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", + "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": 0, + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0, + "num_wires": 4, + "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", + "witness_compiler": "c++" + }, + { + "circuit_id": "f31735ba-10be-4e12-982d-4fef1e1ce0dd", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-13T21:25:45.617Z", + "proving_scheme": "groth16", + "status": "Ready", + "compute_time": "P0DT00H00M07.752871S", + "compute_times": { + "total": 7.832450011745095, + "queued": 8.522851, + "clean_up": 0.001605834811925888, + "create_cpp": 0.055504463613033295, + "file_setup": 0.26607356034219265, + "compile_cpp": 4.702925104647875, + "create_r1cs": 0.01827242784202099, + "save_results": 0.005086880177259445, + "get_r1cs_info": 0.0006781108677387238, + "groth16_setup": 1.3349650297313929, + "export_verification_key": 1.4444408621639013, + "download_trusted_setup_file": 0.0024520885199308395 + }, + "file_sizes": { + "total": 225419, + "circuit": 213240, + "total_gb": 0.000225419, + "total_mb": 0.225419, + "circuit.dat": 6176, + "code.tar.gz": 498, + "circuit.zkey": 2580, + "verification_key": 2925 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", + "Model:": "85", + "CPU(s):": "96", + "BogoMIPS:": "5400.00", + "L2 cache:": "48 MiB (48 instances)", + "L3 cache:": "66 MiB (2 instances)", + "Stepping:": "4", + "L1d cache:": "1.5 MiB (48 instances)", + "L1i cache:": "1.5 MiB (48 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "46 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", + "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", + "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Core(s) per socket:": "24", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", + "On-line CPU(s) list:": "0,1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41-49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89-95", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88", + "Vulnerability Meltdown:": "Mitigation; PTI", + "Vulnerability Retbleed:": "Mitigation; IBRS", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", + "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": 0, + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0, + "num_wires": 4, + "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", + "witness_compiler": "c++" + }, + { + "circuit_id": "aaf4017c-ab46-4f93-bf28-2e56f01dc1fc", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-13T21:25:44.641Z", + "proving_scheme": "groth16", + "status": "Ready", + "compute_time": "P0DT00H00M07.753917S", + "compute_times": { + "total": 7.827567195519805, + "queued": 1.101088, + "clean_up": 0.0016659628599882126, + "create_cpp": 0.05382388457655907, + "file_setup": 0.2323012426495552, + "compile_cpp": 4.666489981114864, + "create_r1cs": 0.011194108054041862, + "save_results": 0.006574276834726334, + "get_r1cs_info": 0.0007063709199428558, + "groth16_setup": 1.4113504774868488, + "export_verification_key": 1.440731318667531, + "download_trusted_setup_file": 0.0024564042687416077 + }, + "file_sizes": { + "total": 225418, + "circuit": 213240, + "total_gb": 0.000225418, + "total_mb": 0.225418, + "circuit.dat": 6176, + "code.tar.gz": 497, + "circuit.zkey": 2580, + "verification_key": 2925 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", + "Model:": "85", + "CPU(s):": "96", + "BogoMIPS:": "5400.00", + "L2 cache:": "48 MiB (48 instances)", + "L3 cache:": "66 MiB (2 instances)", + "Stepping:": "4", + "L1d cache:": "1.5 MiB (48 instances)", + "L1i cache:": "1.5 MiB (48 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "46 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", + "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", + "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Core(s) per socket:": "24", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", + "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", + "Vulnerability Meltdown:": "Mitigation; PTI", + "Vulnerability Retbleed:": "Mitigation; IBRS", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", + "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": 0, + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0, + "num_wires": 4, + "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", + "witness_compiler": "c++" + }, + { + "circuit_id": "db84e100-4f7c-48f6-9f4c-da94fb521ba4", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-13T21:25:44.325Z", + "proving_scheme": "groth16", + "status": "Ready", + "compute_time": "P0DT00H00M07.506195S", + "compute_times": { + "total": 7.577193319797516, + "queued": 1.126466, + "clean_up": 0.0016360525041818619, + "create_cpp": 0.050101183354854584, + "file_setup": 0.2603087369352579, + "compile_cpp": 4.455103283748031, + "create_r1cs": 0.0183374285697937, + "save_results": 0.0060533396899700165, + "get_r1cs_info": 0.0006764288991689682, + "groth16_setup": 1.3401963710784912, + "export_verification_key": 1.4419056754559278, + "download_trusted_setup_file": 0.002419356256723404 + }, + "file_sizes": { + "total": 225450, + "circuit": 213240, + "total_gb": 0.00022545, + "total_mb": 0.22545, + "circuit.dat": 6176, + "code.tar.gz": 529, + "circuit.zkey": 2580, + "verification_key": 2925 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tgz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", + "Model:": "85", + "CPU(s):": "96", + "BogoMIPS:": "5400.00", + "L2 cache:": "48 MiB (48 instances)", + "L3 cache:": "66 MiB (2 instances)", + "Stepping:": "4", + "L1d cache:": "1.5 MiB (48 instances)", + "L1i cache:": "1.5 MiB (48 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "46 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", + "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", + "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Core(s) per socket:": "24", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", + "On-line CPU(s) list:": "0,1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41-49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89-95", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88", + "Vulnerability Meltdown:": "Mitigation; PTI", + "Vulnerability Retbleed:": "Mitigation; IBRS", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", + "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": 0, + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0, + "num_wires": 4, + "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", + "witness_compiler": "c++" + }, + { + "circuit_id": "daa936a6-b70a-485a-bcd2-3225daac7ce4", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-13T21:25:44.263Z", + "proving_scheme": "groth16", + "status": "Ready", + "compute_time": "P0DT00H00M07.369064S", + "compute_times": { + "total": 7.462511362507939, + "queued": 1.390478, + "clean_up": 0.001627311110496521, + "create_cpp": 0.04592450521886349, + "file_setup": 0.2660178393125534, + "compile_cpp": 4.419640392065048, + "create_r1cs": 0.01586141064763069, + "save_results": 0.005797659978270531, + "get_r1cs_info": 0.0007299073040485382, + "groth16_setup": 1.3323616590350866, + "export_verification_key": 1.3716226406395435, + "download_trusted_setup_file": 0.0024577025324106216 + }, + "file_sizes": { + "total": 225424, + "circuit": 213240, + "total_gb": 0.000225424, + "total_mb": 0.225424, + "circuit.dat": 6176, + "code.tar.gz": 503, + "circuit.zkey": 2580, + "verification_key": 2925 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", + "Model:": "85", + "CPU(s):": "96", + "BogoMIPS:": "5400.00", + "L2 cache:": "48 MiB (48 instances)", + "L3 cache:": "66 MiB (2 instances)", + "Stepping:": "4", + "L1d cache:": "1.5 MiB (48 instances)", + "L1i cache:": "1.5 MiB (48 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "46 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", + "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", + "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Core(s) per socket:": "24", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", + "On-line CPU(s) list:": "0,1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41-49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89-95", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88", + "Vulnerability Meltdown:": "Mitigation; PTI", + "Vulnerability Retbleed:": "Mitigation; IBRS", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", + "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": 0, + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0, + "num_wires": 4, + "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", + "witness_compiler": "c++" + }, + { + "circuit_id": "d983ae2d-6e7f-4b0b-a504-1b0e78c4d685", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-13T21:25:09.525Z", + "proving_scheme": "groth16", + "status": "Ready", + "compute_time": "P0DT00H00M07.427022S", + "compute_times": { + "total": 7.503694657236338, + "queued": 8.80287, + "clean_up": 0.001652505248785019, + "create_cpp": 0.04614919610321522, + "file_setup": 0.24367324821650982, + "compile_cpp": 4.46963276527822, + "create_r1cs": 0.018824949860572815, + "save_results": 0.006128018721938133, + "get_r1cs_info": 0.0006784088909626007, + "groth16_setup": 1.3777296636253595, + "export_verification_key": 1.3364742659032345, + "download_trusted_setup_file": 0.0024303756654262543 + }, + "file_sizes": { + "total": 225419, + "circuit": 213240, + "total_gb": 0.000225419, + "total_mb": 0.225419, + "circuit.dat": 6176, + "code.tar.gz": 498, + "circuit.zkey": 2580, + "verification_key": 2925 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", + "Model:": "85", + "CPU(s):": "96", + "BogoMIPS:": "5400.00", + "L2 cache:": "48 MiB (48 instances)", + "L3 cache:": "66 MiB (2 instances)", + "Stepping:": "4", + "L1d cache:": "1.5 MiB (48 instances)", + "L1i cache:": "1.5 MiB (48 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "46 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", + "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", + "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Core(s) per socket:": "24", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", + "On-line CPU(s) list:": "0,1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41-49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89-95", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88", + "Vulnerability Meltdown:": "Mitigation; PTI", + "Vulnerability Retbleed:": "Mitigation; IBRS", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", + "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": 0, + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0, + "num_wires": 4, + "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", + "witness_compiler": "c++" + }, + { + "circuit_id": "14b9b4bd-be26-4a4d-8ad6-2a64b22551b2", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-13T21:25:08.674Z", + "proving_scheme": "groth16", + "status": "Ready", + "compute_time": "P0DT00H00M07.675444S", + "compute_times": { + "total": 7.7506245244294405, + "queued": 1.154247, + "clean_up": 0.0018263813108205795, + "create_cpp": 0.04755707457661629, + "file_setup": 0.23483316786587238, + "compile_cpp": 4.8177584912627935, + "create_r1cs": 0.016598980873823166, + "save_results": 0.005438234657049179, + "get_r1cs_info": 0.0006564464420080185, + "groth16_setup": 1.3556398712098598, + "export_verification_key": 1.2685111500322819, + "download_trusted_setup_file": 0.001376638188958168 + }, + "file_sizes": { + "total": 225418, + "circuit": 213240, + "total_gb": 0.000225418, + "total_mb": 0.225418, + "circuit.dat": 6176, + "code.tar.gz": 497, + "circuit.zkey": 2580, + "verification_key": 2925 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", + "Model:": "85", + "CPU(s):": "96", + "BogoMIPS:": "5400.00", + "L2 cache:": "48 MiB (48 instances)", + "L3 cache:": "66 MiB (2 instances)", + "Stepping:": "4", + "L1d cache:": "1.5 MiB (48 instances)", + "L1i cache:": "1.5 MiB (48 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "46 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", + "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", + "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Core(s) per socket:": "24", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", + "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", + "Vulnerability Meltdown:": "Mitigation; PTI", + "Vulnerability Retbleed:": "Mitigation; IBRS", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", + "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": 0, + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0, + "num_wires": 4, + "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", + "witness_compiler": "c++" + }, + { + "circuit_id": "8cb0a806-6e22-42a3-8938-9c5e4d43c494", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-13T21:25:08.288Z", + "proving_scheme": "groth16", + "status": "Ready", + "compute_time": "P0DT00H00M07.622437S", + "compute_times": { + "total": 7.712840095162392, + "queued": 1.352504, + "clean_up": 0.0015625767409801483, + "create_cpp": 0.0473609771579504, + "file_setup": 0.274502482265234, + "compile_cpp": 4.538209417834878, + "create_r1cs": 0.01853426732122898, + "save_results": 0.005721943452954292, + "get_r1cs_info": 0.0008788108825683594, + "groth16_setup": 1.478102458640933, + "export_verification_key": 1.3446549959480762, + "download_trusted_setup_file": 0.002755912020802498 + }, + "file_sizes": { + "total": 225424, + "circuit": 213240, + "total_gb": 0.000225424, + "total_mb": 0.225424, + "circuit.dat": 6176, + "code.tar.gz": 503, + "circuit.zkey": 2580, + "verification_key": 2925 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", + "Model:": "85", + "CPU(s):": "96", + "BogoMIPS:": "5400.00", + "L2 cache:": "48 MiB (48 instances)", + "L3 cache:": "66 MiB (2 instances)", + "Stepping:": "4", + "L1d cache:": "1.5 MiB (48 instances)", + "L1i cache:": "1.5 MiB (48 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "46 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", + "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", + "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Core(s) per socket:": "24", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", + "On-line CPU(s) list:": "0,1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41-49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89-95", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88", + "Vulnerability Meltdown:": "Mitigation; PTI", + "Vulnerability Retbleed:": "Mitigation; IBRS", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", + "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": 0, + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0, + "num_wires": 4, + "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", + "witness_compiler": "c++" + }, + { + "circuit_id": "28b80e00-ee5e-4fca-b8a2-a4c587a5b1a8", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-13T21:25:08.247Z", + "proving_scheme": "groth16", + "status": "Ready", + "compute_time": "P0DT00H00M07.776828S", + "compute_times": { + "total": 7.85468071885407, + "queued": 1.134198, + "clean_up": 0.0016253981739282608, + "create_cpp": 0.04779060371220112, + "file_setup": 0.25725592114031315, + "compile_cpp": 4.527051644399762, + "create_r1cs": 0.013751301914453506, + "save_results": 0.005713514983654022, + "get_r1cs_info": 0.0006611738353967667, + "groth16_setup": 1.5295016206800938, + "export_verification_key": 1.4682168513536453, + "download_trusted_setup_file": 0.0024928878992795944 + }, + "file_sizes": { + "total": 225450, + "circuit": 213240, + "total_gb": 0.00022545, + "total_mb": 0.22545, + "circuit.dat": 6176, + "code.tar.gz": 529, + "circuit.zkey": 2580, + "verification_key": 2925 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tgz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", + "Model:": "85", + "CPU(s):": "96", + "BogoMIPS:": "5400.00", + "L2 cache:": "48 MiB (48 instances)", + "L3 cache:": "66 MiB (2 instances)", + "Stepping:": "4", + "L1d cache:": "1.5 MiB (48 instances)", + "L1i cache:": "1.5 MiB (48 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "46 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", + "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", + "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Core(s) per socket:": "24", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", + "On-line CPU(s) list:": "0,1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41-49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89-95", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88", + "Vulnerability Meltdown:": "Mitigation; PTI", + "Vulnerability Retbleed:": "Mitigation; IBRS", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", + "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": 0, + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0, + "num_wires": 4, + "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", + "witness_compiler": "c++" + }, + { + "circuit_id": "1f3e9013-4907-423f-96a1-544e04d1e8fd", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-13T21:23:07.754Z", + "proving_scheme": "groth16", + "status": "Ready", + "compute_time": "P0DT00H00M07.641417S", + "compute_times": { + "total": 7.71757803671062, + "queued": 1.220704, + "clean_up": 0.0018078796565532684, + "create_cpp": 0.045883724465966225, + "file_setup": 0.2438215035945177, + "compile_cpp": 4.7984380554407835, + "create_r1cs": 0.01085478626191616, + "save_results": 0.005862860009074211, + "get_r1cs_info": 0.0006757788360118866, + "groth16_setup": 1.3325737826526165, + "export_verification_key": 1.2749093975871801, + "download_trusted_setup_file": 0.0024107228964567184 + }, + "file_sizes": { + "total": 225419, + "circuit": 213240, + "total_gb": 0.000225419, + "total_mb": 0.225419, + "circuit.dat": 6176, + "code.tar.gz": 498, + "circuit.zkey": 2580, + "verification_key": 2925 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", + "Model:": "85", + "CPU(s):": "96", + "BogoMIPS:": "5400.00", + "L2 cache:": "48 MiB (48 instances)", + "L3 cache:": "66 MiB (2 instances)", + "Stepping:": "4", + "L1d cache:": "1.5 MiB (48 instances)", + "L1i cache:": "1.5 MiB (48 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "46 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", + "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", + "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Core(s) per socket:": "24", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", + "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", + "Vulnerability Meltdown:": "Mitigation; PTI", + "Vulnerability Retbleed:": "Mitigation; IBRS", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", + "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": 0, + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0, + "num_wires": 4, + "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", + "witness_compiler": "c++" + }, + { + "circuit_id": "8c2be303-4dbb-4e08-8c83-9544d3a62005", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-13T21:22:21.392Z", + "proving_scheme": "groth16", + "status": "Ready", + "compute_time": "P0DT00H00M07.608258S", + "compute_times": { + "total": 7.6810623444616795, + "queued": 26.433306, + "clean_up": 0.0016187690198421478, + "create_cpp": 0.05313163995742798, + "file_setup": 0.22949195466935635, + "compile_cpp": 4.770350804552436, + "create_r1cs": 0.018276238813996315, + "save_results": 0.005552975460886955, + "get_r1cs_info": 0.0006811916828155518, + "groth16_setup": 1.3329863864928484, + "export_verification_key": 1.2661008946597576, + "download_trusted_setup_file": 0.002443268895149231 + }, + "file_sizes": { + "total": 225419, + "circuit": 213240, + "total_gb": 0.000225419, + "total_mb": 0.225419, + "circuit.dat": 6176, + "code.tar.gz": 498, + "circuit.zkey": 2580, + "verification_key": 2925 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", + "Model:": "85", + "CPU(s):": "96", + "BogoMIPS:": "5400.00", + "L2 cache:": "48 MiB (48 instances)", + "L3 cache:": "66 MiB (2 instances)", + "Stepping:": "4", + "L1d cache:": "1.5 MiB (48 instances)", + "L1i cache:": "1.5 MiB (48 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "46 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", + "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", + "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Core(s) per socket:": "24", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", + "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", + "Vulnerability Meltdown:": "Mitigation; PTI", + "Vulnerability Retbleed:": "Mitigation; IBRS", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", + "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": 0, + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0, + "num_wires": 4, + "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", + "witness_compiler": "c++" + }, + { + "circuit_id": "50efafde-7ee8-4af2-89ce-4d04fff606e7", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-13T21:22:20.790Z", + "proving_scheme": "groth16", + "status": "Ready", + "compute_time": "P0DT00H00M07.733827S", + "compute_times": { + "total": 7.811790093779564, + "queued": 18.099938, + "clean_up": 0.0017698965966701508, + "create_cpp": 0.04756795987486839, + "file_setup": 0.26168153434991837, + "compile_cpp": 4.9301884565502405, + "create_r1cs": 0.018425103276968002, + "save_results": 0.005480572581291199, + "get_r1cs_info": 0.0007110685110092163, + "groth16_setup": 1.26290631480515, + "export_verification_key": 1.2801700197160244, + "download_trusted_setup_file": 0.0024473965167999268 + }, + "file_sizes": { + "total": 225450, + "circuit": 213240, + "total_gb": 0.00022545, + "total_mb": 0.22545, + "circuit.dat": 6176, + "code.tar.gz": 529, + "circuit.zkey": 2580, + "verification_key": 2925 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tgz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", + "Model:": "85", + "CPU(s):": "96", + "BogoMIPS:": "5400.00", + "L2 cache:": "48 MiB (48 instances)", + "L3 cache:": "66 MiB (2 instances)", + "Stepping:": "4", + "L1d cache:": "1.5 MiB (48 instances)", + "L1i cache:": "1.5 MiB (48 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "46 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", + "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", + "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Core(s) per socket:": "24", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", + "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", + "Vulnerability Meltdown:": "Mitigation; PTI", + "Vulnerability Retbleed:": "Mitigation; IBRS", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", + "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": 0, + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0, + "num_wires": 4, + "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", + "witness_compiler": "c++" + }, + { + "circuit_id": "b32c29df-aed4-460d-a55b-c69b3fd14c79", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-13T21:22:20.127Z", + "proving_scheme": "groth16", + "status": "Ready", + "compute_time": "P0DT00H00M07.516072S", + "compute_times": { + "total": 7.594199365004897, + "queued": 1.179891, + "clean_up": 0.0016085132956504822, + "create_cpp": 0.047564439475536346, + "file_setup": 0.24740388244390488, + "compile_cpp": 4.707322858273983, + "create_r1cs": 0.01673438772559166, + "save_results": 0.005771454423666, + "get_r1cs_info": 0.0006707236170768738, + "groth16_setup": 1.2979658357799053, + "export_verification_key": 1.2663146257400513, + "download_trusted_setup_file": 0.0023819822818040848 + }, + "file_sizes": { + "total": 225418, + "circuit": 213240, + "total_gb": 0.000225418, + "total_mb": 0.225418, + "circuit.dat": 6176, + "code.tar.gz": 497, + "circuit.zkey": 2580, + "verification_key": 2925 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", + "Model:": "85", + "CPU(s):": "96", + "BogoMIPS:": "5400.00", + "L2 cache:": "48 MiB (48 instances)", + "L3 cache:": "66 MiB (2 instances)", + "Stepping:": "4", + "L1d cache:": "1.5 MiB (48 instances)", + "L1i cache:": "1.5 MiB (48 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "46 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", + "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", + "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Core(s) per socket:": "24", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", + "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", + "Vulnerability Meltdown:": "Mitigation; PTI", + "Vulnerability Retbleed:": "Mitigation; IBRS", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", + "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": 0, + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0, + "num_wires": 4, + "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", + "witness_compiler": "c++" + }, + { + "circuit_id": "27853e5c-3d53-406d-90ba-bee337369510", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-13T21:22:20.118Z", + "proving_scheme": "groth16", + "status": "Ready", + "compute_time": "P0DT00H00M07.691865S", + "compute_times": { + "total": 7.768615400418639, + "queued": 9.916591, + "clean_up": 0.0023098569363355637, + "create_cpp": 0.05343518406152725, + "file_setup": 0.23305759578943253, + "compile_cpp": 4.7266155276447535, + "create_r1cs": 0.016702940687537193, + "save_results": 0.006057048216462135, + "get_r1cs_info": 0.0006873272359371185, + "groth16_setup": 1.3462165966629982, + "export_verification_key": 1.3805092219263315, + "download_trusted_setup_file": 0.0025850217789411545 + }, + "file_sizes": { + "total": 225424, + "circuit": 213240, + "total_gb": 0.000225424, + "total_mb": 0.225424, + "circuit.dat": 6176, + "code.tar.gz": 503, + "circuit.zkey": 2580, + "verification_key": 2925 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", + "Model:": "85", + "CPU(s):": "96", + "BogoMIPS:": "5400.00", + "L2 cache:": "48 MiB (48 instances)", + "L3 cache:": "66 MiB (2 instances)", + "Stepping:": "4", + "L1d cache:": "1.5 MiB (48 instances)", + "L1i cache:": "1.5 MiB (48 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "46 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", + "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", + "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Core(s) per socket:": "24", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", + "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", + "Vulnerability Meltdown:": "Mitigation; PTI", + "Vulnerability Retbleed:": "Mitigation; IBRS", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", + "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": 0, + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0, + "num_wires": 4, + "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", + "witness_compiler": "c++" + }, + { + "circuit_id": "5beab6fd-e879-420a-afa8-3de72e1a55f7", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-13T21:19:46.504Z", + "proving_scheme": "groth16", + "status": "Ready", + "compute_time": "P0DT00H00M07.515950S", + "compute_times": { + "total": 7.589921785518527, + "queued": 10.157228, + "clean_up": 0.0007169600576162338, + "create_cpp": 0.046469248831272125, + "file_setup": 0.2272897120565176, + "compile_cpp": 4.710785340517759, + "create_r1cs": 0.011910352855920792, + "save_results": 0.004649905487895012, + "get_r1cs_info": 0.0008330028504133224, + "groth16_setup": 1.2739597726613283, + "export_verification_key": 1.3097787145525217, + "download_trusted_setup_file": 0.003099275752902031 + }, + "file_sizes": { + "total": 225419, + "circuit": 213240, + "total_gb": 0.000225419, + "total_mb": 0.225419, + "circuit.dat": 6176, + "code.tar.gz": 498, + "circuit.zkey": 2580, + "verification_key": 2925 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", + "Model:": "85", + "CPU(s):": "96", + "BogoMIPS:": "5400.00", + "L2 cache:": "48 MiB (48 instances)", + "L3 cache:": "66 MiB (2 instances)", + "Stepping:": "4", + "L1d cache:": "1.5 MiB (48 instances)", + "L1i cache:": "1.5 MiB (48 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "46 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", + "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", + "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Core(s) per socket:": "24", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", + "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", + "Vulnerability Meltdown:": "Mitigation; PTI", + "Vulnerability Retbleed:": "Mitigation; IBRS", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", + "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": 0, + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0, + "num_wires": 4, + "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", + "witness_compiler": "c++" + }, + { + "circuit_id": "3614ff84-c93d-4e30-b8b9-ec24358b42c0", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-13T21:19:45.239Z", + "proving_scheme": "groth16", + "status": "Ready", + "compute_time": "P0DT00H00M07.594156S", + "compute_times": { + "total": 7.672163272276521, + "queued": 2.675083, + "clean_up": 0.001137731596827507, + "create_cpp": 0.05406654439866543, + "file_setup": 0.24084424786269665, + "compile_cpp": 4.693928143009543, + "create_r1cs": 0.01765979267656803, + "save_results": 0.0036431998014450073, + "get_r1cs_info": 0.0006935875862836838, + "groth16_setup": 1.344341717660427, + "export_verification_key": 1.3129563517868519, + "download_trusted_setup_file": 0.0024511590600013733 + }, + "file_sizes": { + "total": 225418, + "circuit": 213240, + "total_gb": 0.000225418, + "total_mb": 0.225418, + "circuit.dat": 6176, + "code.tar.gz": 497, + "circuit.zkey": 2580, + "verification_key": 2925 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", + "Model:": "85", + "CPU(s):": "96", + "BogoMIPS:": "5400.00", + "L2 cache:": "48 MiB (48 instances)", + "L3 cache:": "66 MiB (2 instances)", + "Stepping:": "4", + "L1d cache:": "1.5 MiB (48 instances)", + "L1i cache:": "1.5 MiB (48 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "46 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", + "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", + "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Core(s) per socket:": "24", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", + "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", + "Vulnerability Meltdown:": "Mitigation; PTI", + "Vulnerability Retbleed:": "Mitigation; IBRS", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", + "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": 0, + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0, + "num_wires": 4, + "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", + "witness_compiler": "c++" + }, + { + "circuit_id": "152636dc-fa99-421f-9111-2da84bf32acc", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-13T21:18:51.613Z", + "proving_scheme": "groth16", + "status": "Ready", + "compute_time": "P0DT00H00M07.504325S", + "compute_times": { + "total": 7.582463687285781, + "queued": 8.941439, + "clean_up": 0.0015817917883396149, + "create_cpp": 0.04805071838200092, + "file_setup": 0.24654102325439453, + "compile_cpp": 4.683576079085469, + "create_r1cs": 0.018908562138676643, + "save_results": 0.005744511261582375, + "get_r1cs_info": 0.0006975065916776657, + "groth16_setup": 1.3209072556346655, + "export_verification_key": 1.253587955608964, + "download_trusted_setup_file": 0.0025104787200689316 + }, + "file_sizes": { + "total": 225418, + "circuit": 213240, + "total_gb": 0.000225418, + "total_mb": 0.225418, + "circuit.dat": 6176, + "code.tar.gz": 497, + "circuit.zkey": 2580, + "verification_key": 2925 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", + "Model:": "85", + "CPU(s):": "96", + "BogoMIPS:": "5400.00", + "L2 cache:": "48 MiB (48 instances)", + "L3 cache:": "66 MiB (2 instances)", + "Stepping:": "4", + "L1d cache:": "1.5 MiB (48 instances)", + "L1i cache:": "1.5 MiB (48 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "46 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", + "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", + "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Core(s) per socket:": "24", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", + "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", + "Vulnerability Meltdown:": "Mitigation; PTI", + "Vulnerability Retbleed:": "Mitigation; IBRS", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", + "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": 0, + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0, + "num_wires": 4, + "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", + "witness_compiler": "c++" + }, + { + "circuit_id": "a4dcc99e-8071-4ea2-a849-d81bca825ede", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-13T21:18:50.708Z", + "proving_scheme": "groth16", + "status": "Ready", + "compute_time": "P0DT00H00M07.463569S", + "compute_times": { + "total": 7.540723716840148, + "queued": 1.171693, + "clean_up": 0.0016952920705080032, + "create_cpp": 0.05335593223571777, + "file_setup": 0.23299168795347214, + "compile_cpp": 4.694493172690272, + "create_r1cs": 0.015898721292614937, + "save_results": 0.004501448944211006, + "get_r1cs_info": 0.0006934106349945068, + "groth16_setup": 1.2703441120684147, + "export_verification_key": 1.263868784531951, + "download_trusted_setup_file": 0.002431286498904228 + }, + "file_sizes": { + "total": 225418, + "circuit": 213240, + "total_gb": 0.000225418, + "total_mb": 0.225418, + "circuit.dat": 6176, + "code.tar.gz": 497, + "circuit.zkey": 2580, + "verification_key": 2925 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", + "Model:": "85", + "CPU(s):": "96", + "BogoMIPS:": "5400.00", + "L2 cache:": "48 MiB (48 instances)", + "L3 cache:": "66 MiB (2 instances)", + "Stepping:": "4", + "L1d cache:": "1.5 MiB (48 instances)", + "L1i cache:": "1.5 MiB (48 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "46 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", + "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", + "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Core(s) per socket:": "24", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", + "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", + "Vulnerability Meltdown:": "Mitigation; PTI", + "Vulnerability Retbleed:": "Mitigation; IBRS", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", + "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": 0, + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0, + "num_wires": 4, + "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", + "witness_compiler": "c++" + }, + { + "circuit_id": "7257082b-8a36-4532-adab-5c561cde2a29", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-13T21:12:32.316Z", + "proving_scheme": "groth16", + "status": "Ready", + "compute_time": "P0DT00H00M07.729830S", + "compute_times": { + "total": 7.805140299722552, + "queued": 1.094657, + "clean_up": 0.0016505271196365356, + "create_cpp": 0.05546964891254902, + "file_setup": 0.2259269542992115, + "compile_cpp": 4.886959254741669, + "create_r1cs": 0.016729675233364105, + "save_results": 0.005791829898953438, + "get_r1cs_info": 0.0006887372583150864, + "groth16_setup": 1.357726663351059, + "export_verification_key": 1.2512025628238916, + "download_trusted_setup_file": 0.0025302208960056305 + }, + "file_sizes": { + "total": 225418, + "circuit": 213240, + "total_gb": 0.000225418, + "total_mb": 0.225418, + "circuit.dat": 6176, + "code.tar.gz": 497, + "circuit.zkey": 2580, + "verification_key": 2925 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", + "Model:": "85", + "CPU(s):": "96", + "BogoMIPS:": "5400.00", + "L2 cache:": "48 MiB (48 instances)", + "L3 cache:": "66 MiB (2 instances)", + "Stepping:": "4", + "L1d cache:": "1.5 MiB (48 instances)", + "L1i cache:": "1.5 MiB (48 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "46 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", + "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", + "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Core(s) per socket:": "24", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", + "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", + "Vulnerability Meltdown:": "Mitigation; PTI", + "Vulnerability Retbleed:": "Mitigation; IBRS", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", + "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": 0, + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0, + "num_wires": 4, + "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", + "witness_compiler": "c++" + }, + { + "circuit_id": "b6cda26c-e9ae-481f-a455-c1905782cc5a", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-13T21:12:30.890Z", + "proving_scheme": "groth16", + "status": "Ready", + "compute_time": "P0DT00H00M07.515835S", + "compute_times": { + "total": 7.597714696079493, + "queued": 1.112794, + "clean_up": 0.0016388893127441406, + "create_cpp": 0.055322440341115, + "file_setup": 0.2542826198041439, + "compile_cpp": 4.492570606991649, + "create_r1cs": 0.018006742000579834, + "save_results": 0.005599640309810638, + "get_r1cs_info": 0.0007673837244510651, + "groth16_setup": 1.3414161559194326, + "export_verification_key": 1.4249787032604218, + "download_trusted_setup_file": 0.0025149118155241013 + }, + "file_sizes": { + "total": 225419, + "circuit": 213240, + "total_gb": 0.000225419, + "total_mb": 0.225419, + "circuit.dat": 6176, + "code.tar.gz": 498, + "circuit.zkey": 2580, + "verification_key": 2925 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", + "Model:": "85", + "CPU(s):": "96", + "BogoMIPS:": "5400.00", + "L2 cache:": "48 MiB (48 instances)", + "L3 cache:": "66 MiB (2 instances)", + "Stepping:": "4", + "L1d cache:": "1.5 MiB (48 instances)", + "L1i cache:": "1.5 MiB (48 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "46 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", + "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", + "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Core(s) per socket:": "24", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", + "On-line CPU(s) list:": "0,1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41-49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89-95", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88", + "Vulnerability Meltdown:": "Mitigation; PTI", + "Vulnerability Retbleed:": "Mitigation; IBRS", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", + "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": 0, + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0, + "num_wires": 4, + "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", + "witness_compiler": "c++" + }, + { + "circuit_id": "a39533e5-976d-4b15-86fa-fa2572212c6a", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-13T21:11:43.620Z", + "proving_scheme": "groth16", + "status": "Ready", + "compute_time": "P0DT00H00M07.525638S", + "compute_times": { + "total": 7.6020667646080256, + "queued": 1.096438, + "clean_up": 0.0021714698523283005, + "create_cpp": 0.04854712076485157, + "file_setup": 0.24291070736944675, + "compile_cpp": 4.659763751551509, + "create_r1cs": 0.010860981419682503, + "save_results": 0.006801890209317207, + "get_r1cs_info": 0.0006881803274154663, + "groth16_setup": 1.3576972987502813, + "export_verification_key": 1.2697169426828623, + "download_trusted_setup_file": 0.0024792905896902084 + }, + "file_sizes": { + "total": 225419, + "circuit": 213240, + "total_gb": 0.000225419, + "total_mb": 0.225419, + "circuit.dat": 6176, + "code.tar.gz": 498, + "circuit.zkey": 2580, + "verification_key": 2925 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", + "Model:": "85", + "CPU(s):": "96", + "BogoMIPS:": "5400.00", + "L2 cache:": "48 MiB (48 instances)", + "L3 cache:": "66 MiB (2 instances)", + "Stepping:": "4", + "L1d cache:": "1.5 MiB (48 instances)", + "L1i cache:": "1.5 MiB (48 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "46 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", + "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", + "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Core(s) per socket:": "24", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", + "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", + "Vulnerability Meltdown:": "Mitigation; PTI", + "Vulnerability Retbleed:": "Mitigation; IBRS", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", + "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": 0, + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0, + "num_wires": 4, + "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", + "witness_compiler": "c++" + }, + { + "circuit_id": "67af6d38-e3dd-41f9-a73c-2a8cffeb60f3", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-13T21:11:17.808Z", + "proving_scheme": "groth16", + "status": "Ready", + "compute_time": "P0DT00H00M07.696916S", + "compute_times": { + "total": 7.800829553976655, + "queued": 8.900049, + "clean_up": 0.0017651356756687164, + "create_cpp": 0.048156820237636566, + "file_setup": 0.26956662349402905, + "compile_cpp": 4.73041276447475, + "create_r1cs": 0.01830790378153324, + "save_results": 0.0053640734404325485, + "get_r1cs_info": 0.0007263273000717163, + "groth16_setup": 1.3079448156058788, + "export_verification_key": 1.4156472980976105, + "download_trusted_setup_file": 0.0024303123354911804 + }, + "file_sizes": { + "total": 225420, + "circuit": 213240, + "total_gb": 0.00022542, + "total_mb": 0.22542, + "circuit.dat": 6176, + "code.tar.gz": 499, + "circuit.zkey": 2580, + "verification_key": 2925 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", + "Model:": "85", + "CPU(s):": "96", + "BogoMIPS:": "5400.00", + "L2 cache:": "48 MiB (48 instances)", + "L3 cache:": "66 MiB (2 instances)", + "Stepping:": "4", + "L1d cache:": "1.5 MiB (48 instances)", + "L1i cache:": "1.5 MiB (48 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "46 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", + "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", + "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Core(s) per socket:": "24", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", + "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", + "Vulnerability Meltdown:": "Mitigation; PTI", + "Vulnerability Retbleed:": "Mitigation; IBRS", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", + "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": 0, + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0, + "num_wires": 4, + "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", + "witness_compiler": "c++" + }, + { + "circuit_id": "29482186-ed38-40a1-8f41-396e46cbe2af", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-13T21:11:16.527Z", + "proving_scheme": "groth16", + "status": "Ready", + "compute_time": "P0DT00H00M07.843573S", + "compute_times": { + "total": 7.918207410722971, + "queued": 1.1316, + "clean_up": 0.001619592308998108, + "create_cpp": 0.05113654024899006, + "file_setup": 0.22972466051578522, + "compile_cpp": 4.823534423485398, + "create_r1cs": 0.012231025844812393, + "save_results": 0.005758641287684441, + "get_r1cs_info": 0.0007135551422834396, + "groth16_setup": 1.2769745737314224, + "export_verification_key": 1.5135366152971983, + "download_trusted_setup_file": 0.002458721399307251 + }, + "file_sizes": { + "total": 225419, + "circuit": 213240, + "total_gb": 0.000225419, + "total_mb": 0.225419, + "circuit.dat": 6176, + "code.tar.gz": 498, + "circuit.zkey": 2580, + "verification_key": 2925 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", + "Model:": "85", + "CPU(s):": "96", + "BogoMIPS:": "5400.00", + "L2 cache:": "48 MiB (48 instances)", + "L3 cache:": "66 MiB (2 instances)", + "Stepping:": "4", + "L1d cache:": "1.5 MiB (48 instances)", + "L1i cache:": "1.5 MiB (48 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "46 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", + "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", + "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Core(s) per socket:": "24", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", + "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", + "Vulnerability Meltdown:": "Mitigation; PTI", + "Vulnerability Retbleed:": "Mitigation; IBRS", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", + "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": 0, + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0, + "num_wires": 4, + "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", + "witness_compiler": "c++" + }, + { + "circuit_id": "12e11f6e-15fe-48a5-a4ff-5691bda05b5d", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-13T21:05:59.342Z", + "proving_scheme": "groth16", + "status": "Ready", + "compute_time": "P0DT00H00M07.733115S", + "compute_times": { + "total": 7.8099565505981445, + "queued": 1.165322, + "clean_up": 0.0017883870750665665, + "create_cpp": 0.04638352990150452, + "file_setup": 0.23020289093255997, + "compile_cpp": 4.791501699015498, + "create_r1cs": 0.018074993044137955, + "save_results": 0.005634209141135216, + "get_r1cs_info": 0.0005376394838094711, + "groth16_setup": 1.3833652567118406, + "export_verification_key": 1.3307239394634962, + "download_trusted_setup_file": 0.001316094771027565 + }, + "file_sizes": { + "total": 225420, + "circuit": 213240, + "total_gb": 0.00022542, + "total_mb": 0.22542, + "circuit.dat": 6176, + "code.tar.gz": 499, + "circuit.zkey": 2580, + "verification_key": 2925 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", + "Model:": "85", + "CPU(s):": "96", + "BogoMIPS:": "5400.00", + "L2 cache:": "48 MiB (48 instances)", + "L3 cache:": "66 MiB (2 instances)", + "Stepping:": "4", + "L1d cache:": "1.5 MiB (48 instances)", + "L1i cache:": "1.5 MiB (48 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "46 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", + "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", + "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Core(s) per socket:": "24", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", + "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", + "Vulnerability Meltdown:": "Mitigation; PTI", + "Vulnerability Retbleed:": "Mitigation; IBRS", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", + "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": 0, + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0, + "num_wires": 4, + "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", + "witness_compiler": "c++" + }, + { + "circuit_id": "57750805-da3a-4aed-8713-fca8c8217d85", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-13T21:05:58.051Z", + "proving_scheme": "groth16", + "status": "Ready", + "compute_time": "P0DT00H00M07.523016S", + "compute_times": { + "total": 7.615536188706756, + "queued": 1.111699, + "clean_up": 0.0017289314419031143, + "create_cpp": 0.048704590648412704, + "file_setup": 0.30340966396033764, + "compile_cpp": 4.493021473288536, + "create_r1cs": 0.01810857281088829, + "save_results": 0.005765935406088829, + "get_r1cs_info": 0.0006618835031986237, + "groth16_setup": 1.3754791505634785, + "export_verification_key": 1.3655782397836447, + "download_trusted_setup_file": 0.002464406192302704 + }, + "file_sizes": { + "total": 225420, + "circuit": 213240, + "total_gb": 0.00022542, + "total_mb": 0.22542, + "circuit.dat": 6176, + "code.tar.gz": 499, + "circuit.zkey": 2580, + "verification_key": 2925 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", + "Model:": "85", + "CPU(s):": "96", + "BogoMIPS:": "5400.00", + "L2 cache:": "48 MiB (48 instances)", + "L3 cache:": "66 MiB (2 instances)", + "Stepping:": "4", + "L1d cache:": "1.5 MiB (48 instances)", + "L1i cache:": "1.5 MiB (48 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "46 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", + "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", + "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Core(s) per socket:": "24", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", + "On-line CPU(s) list:": "0,1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41-49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89-95", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88", + "Vulnerability Meltdown:": "Mitigation; PTI", + "Vulnerability Retbleed:": "Mitigation; IBRS", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", + "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": 0, + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0, + "num_wires": 4, + "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", + "witness_compiler": "c++" + }, + { + "circuit_id": "ae9ee957-3550-4e73-b85c-67d2d105059e", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-13T21:05:37.596Z", + "proving_scheme": "groth16", + "status": "Ready", + "compute_time": "P0DT00H00M07.637196S", + "compute_times": { + "total": 7.714641183614731, + "queued": 1.118562, + "clean_up": 0.0010698717087507248, + "create_cpp": 0.04957794025540352, + "file_setup": 0.27610501274466515, + "compile_cpp": 4.523411748930812, + "create_r1cs": 0.01730293408036232, + "save_results": 0.005932852625846863, + "get_r1cs_info": 0.0006670821458101273, + "groth16_setup": 1.4076793268322945, + "export_verification_key": 1.4298051688820124, + "download_trusted_setup_file": 0.0024724751710891724 + }, + "file_sizes": { + "total": 225420, + "circuit": 213240, + "total_gb": 0.00022542, + "total_mb": 0.22542, + "circuit.dat": 6176, + "code.tar.gz": 499, + "circuit.zkey": 2580, + "verification_key": 2925 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", + "Model:": "85", + "CPU(s):": "96", + "BogoMIPS:": "5400.00", + "L2 cache:": "48 MiB (48 instances)", + "L3 cache:": "66 MiB (2 instances)", + "Stepping:": "4", + "L1d cache:": "1.5 MiB (48 instances)", + "L1i cache:": "1.5 MiB (48 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "46 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", + "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", + "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Core(s) per socket:": "24", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", + "On-line CPU(s) list:": "0,1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41-49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89-95", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88", + "Vulnerability Meltdown:": "Mitigation; PTI", + "Vulnerability Retbleed:": "Mitigation; IBRS", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", + "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": 0, + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0, + "num_wires": 4, + "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", + "witness_compiler": "c++" + }, + { + "circuit_id": "a87238f3-8b90-4023-9dea-0e882b7981ba", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-13T21:05:36.364Z", + "proving_scheme": "groth16", + "status": "Ready", + "compute_time": "P0DT00H00M07.776732S", + "compute_times": { + "total": 7.861673956736922, + "queued": 1.17302, + "clean_up": 0.001835215836763382, + "create_cpp": 0.05279397964477539, + "file_setup": 0.24823277816176414, + "compile_cpp": 4.638548230752349, + "create_r1cs": 0.01119343563914299, + "save_results": 0.00524553656578064, + "get_r1cs_info": 0.000684596598148346, + "groth16_setup": 1.4201921876519918, + "export_verification_key": 1.4799509402364492, + "download_trusted_setup_file": 0.002554507926106453 + }, + "file_sizes": { + "total": 225419, + "circuit": 213240, + "total_gb": 0.000225419, + "total_mb": 0.225419, + "circuit.dat": 6176, + "code.tar.gz": 498, + "circuit.zkey": 2580, + "verification_key": 2925 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", + "Model:": "85", + "CPU(s):": "96", + "BogoMIPS:": "5400.00", + "L2 cache:": "48 MiB (48 instances)", + "L3 cache:": "66 MiB (2 instances)", + "Stepping:": "4", + "L1d cache:": "1.5 MiB (48 instances)", + "L1i cache:": "1.5 MiB (48 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "46 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", + "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", + "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Core(s) per socket:": "24", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", + "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", + "Vulnerability Meltdown:": "Mitigation; PTI", + "Vulnerability Retbleed:": "Mitigation; IBRS", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", + "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": 0, + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0, + "num_wires": 4, + "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", + "witness_compiler": "c++" + }, + { + "circuit_id": "75c7a835-d810-4e78-a21e-f44ea2cb04e3", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-13T21:03:42.166Z", + "proving_scheme": "groth16", + "status": "Ready", + "compute_time": "P0DT00H00M07.967605S", + "compute_times": { + "total": 8.046053376048803, + "queued": 26.21097, + "clean_up": 0.0018648356199264526, + "create_cpp": 0.05596049129962921, + "file_setup": 0.24261613935232162, + "compile_cpp": 4.93765183351934, + "create_r1cs": 0.017572950571775436, + "save_results": 0.0059426408261060715, + "get_r1cs_info": 0.0006746537983417511, + "groth16_setup": 1.2796957772225142, + "export_verification_key": 1.5012296475470066, + "download_trusted_setup_file": 0.002398606389760971 + }, + "file_sizes": { + "total": 225419, + "circuit": 213240, + "total_gb": 0.000225419, + "total_mb": 0.225419, + "circuit.dat": 6176, + "code.tar.gz": 498, + "circuit.zkey": 2580, + "verification_key": 2925 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", + "Model:": "85", + "CPU(s):": "96", + "BogoMIPS:": "5400.00", + "L2 cache:": "48 MiB (48 instances)", + "L3 cache:": "66 MiB (2 instances)", + "Stepping:": "4", + "L1d cache:": "1.5 MiB (48 instances)", + "L1i cache:": "1.5 MiB (48 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "46 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", + "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", + "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Core(s) per socket:": "24", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", + "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", + "Vulnerability Meltdown:": "Mitigation; PTI", + "Vulnerability Retbleed:": "Mitigation; IBRS", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", + "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": 0, + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0, + "num_wires": 4, + "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", + "witness_compiler": "c++" + }, + { + "circuit_id": "6fa42f17-7d1f-4dee-9909-2bf61f577c5f", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-13T21:03:41.592Z", + "proving_scheme": "groth16", + "status": "Ready", + "compute_time": "P0DT00H00M07.580787S", + "compute_times": { + "total": 7.655207581818104, + "queued": 17.985551, + "clean_up": 0.002056419849395752, + "create_cpp": 0.052002936601638794, + "file_setup": 0.2451938558369875, + "compile_cpp": 4.685491403564811, + "create_r1cs": 0.010299311950802803, + "save_results": 0.006189430132508278, + "get_r1cs_info": 0.0008878409862518311, + "groth16_setup": 1.272452101111412, + "export_verification_key": 1.3772340640425682, + "download_trusted_setup_file": 0.0030425861477851868 + }, + "file_sizes": { + "total": 225450, + "circuit": 213240, + "total_gb": 0.00022545, + "total_mb": 0.22545, + "circuit.dat": 6176, + "code.tar.gz": 529, + "circuit.zkey": 2580, + "verification_key": 2925 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tgz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", + "Model:": "85", + "CPU(s):": "96", + "BogoMIPS:": "5400.00", + "L2 cache:": "48 MiB (48 instances)", + "L3 cache:": "66 MiB (2 instances)", + "Stepping:": "4", + "L1d cache:": "1.5 MiB (48 instances)", + "L1i cache:": "1.5 MiB (48 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "46 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", + "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", + "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Core(s) per socket:": "24", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", + "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", + "Vulnerability Meltdown:": "Mitigation; PTI", + "Vulnerability Retbleed:": "Mitigation; IBRS", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", + "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": 0, + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0, + "num_wires": 4, + "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", + "witness_compiler": "c++" + }, + { + "circuit_id": "9f6ab24a-2672-4c5a-931c-3582ddee3be3", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-13T21:03:41.189Z", + "proving_scheme": "groth16", + "status": "Ready", + "compute_time": "P0DT00H00M07.415751S", + "compute_times": { + "total": 7.493710907176137, + "queued": 9.715005, + "clean_up": 0.0016273707151412964, + "create_cpp": 0.05303688161075115, + "file_setup": 0.2430403921753168, + "compile_cpp": 4.668433295562863, + "create_r1cs": 0.012174364179372787, + "save_results": 0.005725568160414696, + "get_r1cs_info": 0.0008735992014408112, + "groth16_setup": 1.244223466143012, + "export_verification_key": 1.2610872369259596, + "download_trusted_setup_file": 0.0030381176620721817 + }, + "file_sizes": { + "total": 225424, + "circuit": 213240, + "total_gb": 0.000225424, + "total_mb": 0.225424, + "circuit.dat": 6176, + "code.tar.gz": 503, + "circuit.zkey": 2580, + "verification_key": 2925 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", + "Model:": "85", + "CPU(s):": "96", + "BogoMIPS:": "5400.00", + "L2 cache:": "48 MiB (48 instances)", + "L3 cache:": "66 MiB (2 instances)", + "Stepping:": "4", + "L1d cache:": "1.5 MiB (48 instances)", + "L1i cache:": "1.5 MiB (48 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "46 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", + "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", + "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Core(s) per socket:": "24", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", + "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", + "Vulnerability Meltdown:": "Mitigation; PTI", + "Vulnerability Retbleed:": "Mitigation; IBRS", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", + "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": 0, + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0, + "num_wires": 4, + "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", + "witness_compiler": "c++" + }, + { + "circuit_id": "cea5b4b2-5dd4-4d24-a879-60b84d523800", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-13T21:03:40.905Z", + "proving_scheme": "groth16", + "status": "Ready", + "compute_time": "P0DT00H00M07.587273S", + "compute_times": { + "total": 7.663808356970549, + "queued": 1.158335, + "clean_up": 0.0018277596682310104, + "create_cpp": 0.05417764373123646, + "file_setup": 0.24907702021300793, + "compile_cpp": 4.704896626994014, + "create_r1cs": 0.010135684162378311, + "save_results": 0.0060002803802490234, + "get_r1cs_info": 0.0007133446633815765, + "groth16_setup": 1.3235171046108007, + "export_verification_key": 1.3105034790933132, + "download_trusted_setup_file": 0.0025282446295022964 + }, + "file_sizes": { + "total": 225419, + "circuit": 213240, + "total_gb": 0.000225419, + "total_mb": 0.225419, + "circuit.dat": 6176, + "code.tar.gz": 498, + "circuit.zkey": 2580, + "verification_key": 2925 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", + "Model:": "85", + "CPU(s):": "96", + "BogoMIPS:": "5400.00", + "L2 cache:": "48 MiB (48 instances)", + "L3 cache:": "66 MiB (2 instances)", + "Stepping:": "4", + "L1d cache:": "1.5 MiB (48 instances)", + "L1i cache:": "1.5 MiB (48 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "46 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", + "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", + "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Core(s) per socket:": "24", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", + "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", + "Vulnerability Meltdown:": "Mitigation; PTI", + "Vulnerability Retbleed:": "Mitigation; IBRS", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", + "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": 0, + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0, + "num_wires": 4, + "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", + "witness_compiler": "c++" + }, + { + "circuit_id": "be85789b-7d19-4fd2-8ab6-79f116e99018", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-13T20:58:42.298Z", + "proving_scheme": "groth16", + "status": "Ready", + "compute_time": "P0DT00H00M07.612119S", + "compute_times": { + "total": 7.685093659907579, + "queued": 1.14216, + "clean_up": 0.002341996878385544, + "create_cpp": 0.05459519848227501, + "file_setup": 0.23490560427308083, + "compile_cpp": 4.658818148076534, + "create_r1cs": 0.016625098884105682, + "save_results": 0.00551554374396801, + "get_r1cs_info": 0.0008137207478284836, + "groth16_setup": 1.3161104060709476, + "export_verification_key": 1.3924682848155499, + "download_trusted_setup_file": 0.0024645328521728516 + }, + "file_sizes": { + "total": 225420, + "circuit": 213240, + "total_gb": 0.00022542, + "total_mb": 0.22542, + "circuit.dat": 6176, + "code.tar.gz": 499, + "circuit.zkey": 2580, + "verification_key": 2925 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", + "Model:": "85", + "CPU(s):": "96", + "BogoMIPS:": "5400.00", + "L2 cache:": "48 MiB (48 instances)", + "L3 cache:": "66 MiB (2 instances)", + "Stepping:": "4", + "L1d cache:": "1.5 MiB (48 instances)", + "L1i cache:": "1.5 MiB (48 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "46 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", + "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", + "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Core(s) per socket:": "24", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", + "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", + "Vulnerability Meltdown:": "Mitigation; PTI", + "Vulnerability Retbleed:": "Mitigation; IBRS", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", + "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": 0, + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0, + "num_wires": 4, + "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", + "witness_compiler": "c++" + }, + { + "circuit_id": "1a8a8918-7317-4e2e-a1ef-b66915916586", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-13T20:53:09.229Z", + "proving_scheme": "groth16", + "status": "Ready", + "compute_time": "P0DT00H00M07.762289S", + "compute_times": { + "total": 7.838186884298921, + "queued": 1.165658, + "clean_up": 0.0008691418915987015, + "create_cpp": 0.05640839971601963, + "file_setup": 0.25557226315140724, + "compile_cpp": 4.874635396525264, + "create_r1cs": 0.01985102891921997, + "save_results": 0.004785357043147087, + "get_r1cs_info": 0.000703742727637291, + "groth16_setup": 1.3269466310739517, + "export_verification_key": 1.2955008279532194, + "download_trusted_setup_file": 0.002431994304060936 + }, + "file_sizes": { + "total": 225420, + "circuit": 213240, + "total_gb": 0.00022542, + "total_mb": 0.22542, + "circuit.dat": 6176, + "code.tar.gz": 499, + "circuit.zkey": 2580, + "verification_key": 2925 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", + "Model:": "85", + "CPU(s):": "96", + "BogoMIPS:": "5400.00", + "L2 cache:": "48 MiB (48 instances)", + "L3 cache:": "66 MiB (2 instances)", + "Stepping:": "4", + "L1d cache:": "1.5 MiB (48 instances)", + "L1i cache:": "1.5 MiB (48 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "46 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", + "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", + "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Core(s) per socket:": "24", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", + "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", + "Vulnerability Meltdown:": "Mitigation; PTI", + "Vulnerability Retbleed:": "Mitigation; IBRS", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", + "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": 0, + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0, + "num_wires": 4, + "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", + "witness_compiler": "c++" + }, + { + "circuit_id": "11e941af-d1c5-4b5c-90d4-7779d3afbb3e", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-13T20:52:11.769Z", + "proving_scheme": "groth16", + "status": "Ready", + "compute_time": "P0DT00H00M07.415274S", + "compute_times": { + "total": 7.493496775627136, + "queued": 8.869445, + "clean_up": 0.0016371160745620728, + "create_cpp": 0.04689290374517441, + "file_setup": 0.2514117080718279, + "compile_cpp": 4.450153106823564, + "create_r1cs": 0.017276693135499954, + "save_results": 0.0053817834705114365, + "get_r1cs_info": 0.0006324015557765961, + "groth16_setup": 1.4012358412146568, + "export_verification_key": 1.3159835990518332, + "download_trusted_setup_file": 0.002422098070383072 + }, + "file_sizes": { + "total": 225418, + "circuit": 213240, + "total_gb": 0.000225418, + "total_mb": 0.225418, + "circuit.dat": 6176, + "code.tar.gz": 497, + "circuit.zkey": 2580, + "verification_key": 2925 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", + "Model:": "85", + "CPU(s):": "96", + "BogoMIPS:": "5400.00", + "L2 cache:": "48 MiB (48 instances)", + "L3 cache:": "66 MiB (2 instances)", + "Stepping:": "4", + "L1d cache:": "1.5 MiB (48 instances)", + "L1i cache:": "1.5 MiB (48 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "46 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", + "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", + "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Core(s) per socket:": "24", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", + "On-line CPU(s) list:": "0,1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41-49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89-95", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88", + "Vulnerability Meltdown:": "Mitigation; PTI", + "Vulnerability Retbleed:": "Mitigation; IBRS", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", + "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": 0, + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0, + "num_wires": 4, + "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", + "witness_compiler": "c++" + }, + { + "circuit_id": "40567a0b-db53-42b6-9faf-645b7d2b01d4", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-13T20:52:10.857Z", + "proving_scheme": "groth16", + "status": "Ready", + "compute_time": "P0DT00H00M07.844716S", + "compute_times": { + "total": 7.935871887952089, + "queued": 1.174927, + "clean_up": 0.0017419569194316864, + "create_cpp": 0.04830462113022804, + "file_setup": 0.2918488848954439, + "compile_cpp": 4.551170919090509, + "create_r1cs": 0.011252205818891525, + "save_results": 0.006273416802287102, + "get_r1cs_info": 0.000791722908616066, + "groth16_setup": 1.4771566465497017, + "export_verification_key": 1.544492220506072, + "download_trusted_setup_file": 0.002414800226688385 + }, + "file_sizes": { + "total": 225424, + "circuit": 213240, + "total_gb": 0.000225424, + "total_mb": 0.225424, + "circuit.dat": 6176, + "code.tar.gz": 503, + "circuit.zkey": 2580, + "verification_key": 2925 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", + "Model:": "85", + "CPU(s):": "96", + "BogoMIPS:": "5400.00", + "L2 cache:": "48 MiB (48 instances)", + "L3 cache:": "66 MiB (2 instances)", + "Stepping:": "4", + "L1d cache:": "1.5 MiB (48 instances)", + "L1i cache:": "1.5 MiB (48 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "46 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", + "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", + "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Core(s) per socket:": "24", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", + "On-line CPU(s) list:": "0,1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41-49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89-95", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88", + "Vulnerability Meltdown:": "Mitigation; PTI", + "Vulnerability Retbleed:": "Mitigation; IBRS", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", + "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": 0, + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0, + "num_wires": 4, + "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", + "witness_compiler": "c++" + }, + { + "circuit_id": "e8a3b8c4-a204-4377-aa16-6693ec6a47fe", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-13T20:52:10.473Z", + "proving_scheme": "groth16", + "status": "Ready", + "compute_time": "P0DT00H00M07.761080S", + "compute_times": { + "total": 7.84102806635201, + "queued": 1.191136, + "clean_up": 0.0016466900706291199, + "create_cpp": 0.050837548449635506, + "file_setup": 0.305857976898551, + "compile_cpp": 4.831999080255628, + "create_r1cs": 0.016980327665805817, + "save_results": 0.004616068676114082, + "get_r1cs_info": 0.0007538795471191406, + "groth16_setup": 1.377663504332304, + "export_verification_key": 1.2477229591459036, + "download_trusted_setup_file": 0.0024341512471437454 + }, + "file_sizes": { + "total": 225450, + "circuit": 213240, + "total_gb": 0.00022545, + "total_mb": 0.22545, + "circuit.dat": 6176, + "code.tar.gz": 529, + "circuit.zkey": 2580, + "verification_key": 2925 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tgz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", + "Model:": "85", + "CPU(s):": "96", + "BogoMIPS:": "5400.00", + "L2 cache:": "48 MiB (48 instances)", + "L3 cache:": "66 MiB (2 instances)", + "Stepping:": "4", + "L1d cache:": "1.5 MiB (48 instances)", + "L1i cache:": "1.5 MiB (48 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "46 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", + "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", + "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Core(s) per socket:": "24", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", + "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", + "Vulnerability Meltdown:": "Mitigation; PTI", + "Vulnerability Retbleed:": "Mitigation; IBRS", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", + "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": 0, + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0, + "num_wires": 4, + "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", + "witness_compiler": "c++" + }, + { + "circuit_id": "b45a2f28-629c-4b26-9d0f-74e89e9aa4a1", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-13T20:52:10.459Z", + "proving_scheme": "groth16", + "status": "Ready", + "compute_time": "P0DT00H00M07.772072S", + "compute_times": { + "total": 7.85684909299016, + "queued": 1.168927, + "clean_up": 0.001656675711274147, + "create_cpp": 0.046758586540818214, + "file_setup": 0.356998885050416, + "compile_cpp": 4.629376698285341, + "create_r1cs": 0.016368335112929344, + "save_results": 0.005804345011711121, + "get_r1cs_info": 0.0006794314831495285, + "groth16_setup": 1.4081361554563046, + "export_verification_key": 1.3879967276006937, + "download_trusted_setup_file": 0.002491012215614319 + }, + "file_sizes": { + "total": 225420, + "circuit": 213240, + "total_gb": 0.00022542, + "total_mb": 0.22542, + "circuit.dat": 6176, + "code.tar.gz": 499, + "circuit.zkey": 2580, + "verification_key": 2925 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", + "Model:": "85", + "CPU(s):": "96", + "BogoMIPS:": "5400.00", + "L2 cache:": "48 MiB (48 instances)", + "L3 cache:": "66 MiB (2 instances)", + "Stepping:": "4", + "L1d cache:": "1.5 MiB (48 instances)", + "L1i cache:": "1.5 MiB (48 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "46 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", + "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", + "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Core(s) per socket:": "24", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", + "On-line CPU(s) list:": "0,1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41-49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89-95", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88", + "Vulnerability Meltdown:": "Mitigation; PTI", + "Vulnerability Retbleed:": "Mitigation; IBRS", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", + "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": 0, + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0, + "num_wires": 4, + "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", + "witness_compiler": "c++" + }, + { + "circuit_id": "48abbf24-259f-449a-be8a-b38889c54d91", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-13T20:47:36.791Z", + "proving_scheme": "groth16", + "status": "Ready", + "compute_time": "P0DT00H00M07.699616S", + "compute_times": { + "total": 7.776923732832074, + "queued": 1.114412, + "clean_up": 0.0017519760876893997, + "create_cpp": 0.04844082519412041, + "file_setup": 0.2680229563266039, + "compile_cpp": 4.7926163002848625, + "create_r1cs": 0.01559528149664402, + "save_results": 0.005934497341513634, + "get_r1cs_info": 0.0007298476994037628, + "groth16_setup": 1.3021647650748491, + "export_verification_key": 1.3384632784873247, + "download_trusted_setup_file": 0.002724595367908478 + }, + "file_sizes": { + "total": 225418, + "circuit": 213240, + "total_gb": 0.000225418, + "total_mb": 0.225418, + "circuit.dat": 6176, + "code.tar.gz": 497, + "circuit.zkey": 2580, + "verification_key": 2925 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", + "Model:": "85", + "CPU(s):": "96", + "BogoMIPS:": "5400.00", + "L2 cache:": "48 MiB (48 instances)", + "L3 cache:": "66 MiB (2 instances)", + "Stepping:": "4", + "L1d cache:": "1.5 MiB (48 instances)", + "L1i cache:": "1.5 MiB (48 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "46 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", + "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", + "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Core(s) per socket:": "24", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", + "On-line CPU(s) list:": "0,1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41-49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89-95", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88", + "Vulnerability Meltdown:": "Mitigation; PTI", + "Vulnerability Retbleed:": "Mitigation; IBRS", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", + "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": 0, + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0, + "num_wires": 4, + "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", + "witness_compiler": "c++" + }, + { + "circuit_id": "c8cffa90-0d2d-49d1-bbdb-dfa109aa13a4", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-13T20:46:45.727Z", + "proving_scheme": "groth16", + "status": "Ready", + "compute_time": "P0DT00H00M07.613741S", + "compute_times": { + "total": 7.690422313287854, + "queued": 33.822267, + "clean_up": 0.0018018875271081924, + "create_cpp": 0.05492768436670303, + "file_setup": 0.2554306983947754, + "compile_cpp": 4.600179400295019, + "create_r1cs": 0.008259830996394157, + "save_results": 0.00659073144197464, + "get_r1cs_info": 0.0003707129508256912, + "groth16_setup": 1.3555676974356174, + "export_verification_key": 1.4054905492812395, + "download_trusted_setup_file": 0.0011803917586803436 + }, + "file_sizes": { + "total": 225419, + "circuit": 213240, + "total_gb": 0.000225419, + "total_mb": 0.225419, + "circuit.dat": 6176, + "code.tar.gz": 498, + "circuit.zkey": 2580, + "verification_key": 2925 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", + "Model:": "85", + "CPU(s):": "96", + "BogoMIPS:": "5400.00", + "L2 cache:": "48 MiB (48 instances)", + "L3 cache:": "66 MiB (2 instances)", + "Stepping:": "4", + "L1d cache:": "1.5 MiB (48 instances)", + "L1i cache:": "1.5 MiB (48 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "46 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", + "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", + "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Core(s) per socket:": "24", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", + "On-line CPU(s) list:": "0,1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41-49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89-95", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88", + "Vulnerability Meltdown:": "Mitigation; PTI", + "Vulnerability Retbleed:": "Mitigation; IBRS", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", + "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": 0, + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0, + "num_wires": 4, + "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", + "witness_compiler": "c++" + }, + { + "circuit_id": "552a7b11-54dd-4bcd-a182-b761b094ec0b", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-13T20:46:44.803Z", + "proving_scheme": "groth16", + "status": "Ready", + "compute_time": "P0DT00H00M07.515952S", + "compute_times": { + "total": 7.5932529624551535, + "queued": 32.746434, + "clean_up": 0.0010620690882205963, + "create_cpp": 0.04890178702771664, + "file_setup": 0.25152294524013996, + "compile_cpp": 4.557625237852335, + "create_r1cs": 0.016739951446652412, + "save_results": 0.004754070192575455, + "get_r1cs_info": 0.0006603635847568512, + "groth16_setup": 1.3873532582074404, + "export_verification_key": 1.3215058222413063, + "download_trusted_setup_file": 0.002488488331437111 + }, + "file_sizes": { + "total": 225420, + "circuit": 213240, + "total_gb": 0.00022542, + "total_mb": 0.22542, + "circuit.dat": 6176, + "code.tar.gz": 499, + "circuit.zkey": 2580, + "verification_key": 2925 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", + "Model:": "85", + "CPU(s):": "96", + "BogoMIPS:": "5400.00", + "L2 cache:": "48 MiB (48 instances)", + "L3 cache:": "66 MiB (2 instances)", + "Stepping:": "4", + "L1d cache:": "1.5 MiB (48 instances)", + "L1i cache:": "1.5 MiB (48 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "46 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", + "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", + "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Core(s) per socket:": "24", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", + "On-line CPU(s) list:": "0,1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41-49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89-95", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88", + "Vulnerability Meltdown:": "Mitigation; PTI", + "Vulnerability Retbleed:": "Mitigation; IBRS", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", + "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": 0, + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0, + "num_wires": 4, + "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", + "witness_compiler": "c++" + }, + { + "circuit_id": "2ca76e72-5afc-45a0-9b97-9238d19743d0", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-13T20:46:44.487Z", + "proving_scheme": "groth16", + "status": "Ready", + "compute_time": "P0DT00H00M07.590935S", + "compute_times": { + "total": 7.668134920299053, + "queued": 27.894738, + "clean_up": 0.0018086303025484085, + "create_cpp": 0.047053029760718346, + "file_setup": 0.23089499771595, + "compile_cpp": 4.629393395036459, + "create_r1cs": 0.011073233559727669, + "save_results": 0.005805622786283493, + "get_r1cs_info": 0.0006980784237384796, + "groth16_setup": 1.3557848315685987, + "export_verification_key": 1.3827202580869198, + "download_trusted_setup_file": 0.002456182613968849 + }, + "file_sizes": { + "total": 225424, + "circuit": 213240, + "total_gb": 0.000225424, + "total_mb": 0.225424, + "circuit.dat": 6176, + "code.tar.gz": 503, + "circuit.zkey": 2580, + "verification_key": 2925 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", + "Model:": "85", + "CPU(s):": "96", + "BogoMIPS:": "5400.00", + "L2 cache:": "48 MiB (48 instances)", + "L3 cache:": "66 MiB (2 instances)", + "Stepping:": "4", + "L1d cache:": "1.5 MiB (48 instances)", + "L1i cache:": "1.5 MiB (48 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "46 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", + "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", + "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Core(s) per socket:": "24", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", + "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", + "Vulnerability Meltdown:": "Mitigation; PTI", + "Vulnerability Retbleed:": "Mitigation; IBRS", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", + "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": 0, + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0, + "num_wires": 4, + "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", + "witness_compiler": "c++" + }, + { + "circuit_id": "a0bdedb8-7a09-4052-abcb-9ed696c686b5", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-13T20:46:44.476Z", + "proving_scheme": "groth16", + "status": "Ready", + "compute_time": "P0DT00H00M07.705396S", + "compute_times": { + "total": 7.776749765500426, + "queued": 19.04132, + "clean_up": 0.0012914035469293594, + "create_cpp": 0.05671204254031181, + "file_setup": 0.2300866860896349, + "compile_cpp": 4.876820022240281, + "create_r1cs": 0.013439206406474113, + "save_results": 0.005176816135644913, + "get_r1cs_info": 0.0005762949585914612, + "groth16_setup": 1.2933933082967997, + "export_verification_key": 1.2968760952353477, + "download_trusted_setup_file": 0.0018088724464178085 + }, + "file_sizes": { + "total": 225450, + "circuit": 213240, + "total_gb": 0.00022545, + "total_mb": 0.22545, + "circuit.dat": 6176, + "code.tar.gz": 529, + "circuit.zkey": 2580, + "verification_key": 2925 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tgz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", + "Model:": "85", + "CPU(s):": "96", + "BogoMIPS:": "5400.00", + "L2 cache:": "48 MiB (48 instances)", + "L3 cache:": "66 MiB (2 instances)", + "Stepping:": "4", + "L1d cache:": "1.5 MiB (48 instances)", + "L1i cache:": "1.5 MiB (48 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "46 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", + "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", + "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Core(s) per socket:": "24", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", + "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", + "Vulnerability Meltdown:": "Mitigation; PTI", + "Vulnerability Retbleed:": "Mitigation; IBRS", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", + "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": 0, + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0, + "num_wires": 4, + "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", + "witness_compiler": "c++" + }, + { + "circuit_id": "190315c4-b855-4630-88bd-ee26cd7d1d01", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-13T19:52:33.385Z", + "proving_scheme": "groth16", + "status": "Ready", + "compute_time": "P0DT00H00M07.572978S", + "compute_times": { + "total": 7.647768121212721, + "queued": 1.189038, + "clean_up": 0.0017464309930801392, + "create_cpp": 0.05523469112813473, + "file_setup": 0.2625980079174042, + "compile_cpp": 4.723205912858248, + "create_r1cs": 0.01834150403738022, + "save_results": 0.005839653313159943, + "get_r1cs_info": 0.0006966739892959595, + "groth16_setup": 1.2872309237718582, + "export_verification_key": 1.2899665106087923, + "download_trusted_setup_file": 0.002456560730934143 + }, + "file_sizes": { + "total": 225417, + "circuit": 213240, + "total_gb": 0.000225417, + "total_mb": 0.225417, + "circuit.dat": 6176, + "code.tar.gz": 496, + "circuit.zkey": 2580, + "verification_key": 2925 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", + "Model:": "85", + "CPU(s):": "96", + "BogoMIPS:": "5400.00", + "L2 cache:": "48 MiB (48 instances)", + "L3 cache:": "66 MiB (2 instances)", + "Stepping:": "4", + "L1d cache:": "1.5 MiB (48 instances)", + "L1i cache:": "1.5 MiB (48 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "46 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", + "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", + "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Core(s) per socket:": "24", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", + "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", + "Vulnerability Meltdown:": "Mitigation; PTI", + "Vulnerability Retbleed:": "Mitigation; IBRS", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", + "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": 0, + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0, + "num_wires": 4, + "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", + "witness_compiler": "c++" + }, + { + "circuit_id": "efd39298-db6a-42ec-8c5c-70624d6b4d20", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-13T19:49:50.186Z", + "proving_scheme": "groth16", + "status": "Ready", + "compute_time": "P0DT00H00M07.544503S", + "compute_times": { + "total": 7.621049035340548, + "queued": 1.213655, + "clean_up": 0.0007674247026443481, + "create_cpp": 0.04509667679667473, + "file_setup": 0.25903115049004555, + "compile_cpp": 4.652491440996528, + "create_r1cs": 0.011222857981920242, + "save_results": 0.004881551489233971, + "get_r1cs_info": 0.0006925370544195175, + "groth16_setup": 1.3327859863638878, + "export_verification_key": 1.3111931774765253, + "download_trusted_setup_file": 0.0024320408701896667 + }, + "file_sizes": { + "total": 225419, + "circuit": 213240, + "total_gb": 0.000225419, + "total_mb": 0.225419, + "circuit.dat": 6176, + "code.tar.gz": 498, + "circuit.zkey": 2580, + "verification_key": 2925 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", + "Model:": "85", + "CPU(s):": "96", + "BogoMIPS:": "5400.00", + "L2 cache:": "48 MiB (48 instances)", + "L3 cache:": "66 MiB (2 instances)", + "Stepping:": "4", + "L1d cache:": "1.5 MiB (48 instances)", + "L1i cache:": "1.5 MiB (48 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "46 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", + "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", + "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Core(s) per socket:": "24", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", + "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", + "Vulnerability Meltdown:": "Mitigation; PTI", + "Vulnerability Retbleed:": "Mitigation; IBRS", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", + "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": 0, + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0, + "num_wires": 4, + "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", + "witness_compiler": "c++" + }, + { + "circuit_id": "ba2f5cd1-96b1-4d9c-b722-5ac460fea6e6", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-13T19:49:05.977Z", + "proving_scheme": "groth16", + "status": "Ready", + "compute_time": "P0DT00H00M07.662052S", + "compute_times": { + "total": 7.7336688078939915, + "queued": 1.123447, + "clean_up": 0.0017930883914232254, + "create_cpp": 0.0463506244122982, + "file_setup": 0.2377893142402172, + "compile_cpp": 4.749906187877059, + "create_r1cs": 0.010152315720915794, + "save_results": 0.0053513552993535995, + "get_r1cs_info": 0.0008222367614507675, + "groth16_setup": 1.3547440730035305, + "export_verification_key": 1.3238158524036407, + "download_trusted_setup_file": 0.002467406913638115 + }, + "file_sizes": { + "total": 225420, + "circuit": 213240, + "total_gb": 0.00022542, + "total_mb": 0.22542, + "circuit.dat": 6176, + "code.tar.gz": 499, + "circuit.zkey": 2580, + "verification_key": 2925 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", + "Model:": "85", + "CPU(s):": "96", + "BogoMIPS:": "5400.00", + "L2 cache:": "48 MiB (48 instances)", + "L3 cache:": "66 MiB (2 instances)", + "Stepping:": "4", + "L1d cache:": "1.5 MiB (48 instances)", + "L1i cache:": "1.5 MiB (48 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "46 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", + "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", + "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Core(s) per socket:": "24", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", + "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", + "Vulnerability Meltdown:": "Mitigation; PTI", + "Vulnerability Retbleed:": "Mitigation; IBRS", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", + "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": 0, + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0, + "num_wires": 4, + "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", + "witness_compiler": "c++" + }, + { + "circuit_id": "8c057b7d-c64d-4059-ab29-9298ad6a2a53", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-13T19:48:26.875Z", + "proving_scheme": "groth16", + "status": "Ready", + "compute_time": "P0DT00H00M07.377793S", + "compute_times": { + "total": 7.45503032207489, + "queued": 1.110193, + "clean_up": 0.0017393846064805984, + "create_cpp": 0.05383708514273167, + "file_setup": 0.24573651514947414, + "compile_cpp": 4.488782860338688, + "create_r1cs": 0.017437485978007317, + "save_results": 0.005972316488623619, + "get_r1cs_info": 0.0006892457604408264, + "groth16_setup": 1.324556514620781, + "export_verification_key": 1.3133248090744019, + "download_trusted_setup_file": 0.002494256943464279 + }, + "file_sizes": { + "total": 225419, + "circuit": 213240, + "total_gb": 0.000225419, + "total_mb": 0.225419, + "circuit.dat": 6176, + "code.tar.gz": 498, + "circuit.zkey": 2580, + "verification_key": 2925 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", + "Model:": "85", + "CPU(s):": "96", + "BogoMIPS:": "5400.00", + "L2 cache:": "48 MiB (48 instances)", + "L3 cache:": "66 MiB (2 instances)", + "Stepping:": "4", + "L1d cache:": "1.5 MiB (48 instances)", + "L1i cache:": "1.5 MiB (48 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "46 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", + "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", + "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Core(s) per socket:": "24", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", + "On-line CPU(s) list:": "0,1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41-49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89-95", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88", + "Vulnerability Meltdown:": "Mitigation; PTI", + "Vulnerability Retbleed:": "Mitigation; IBRS", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", + "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": 0, + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0, + "num_wires": 4, + "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", + "witness_compiler": "c++" + }, + { + "circuit_id": "4c600cdd-f1f9-495d-b445-2221f0a89f46", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-13T19:47:38.396Z", + "proving_scheme": "groth16", + "status": "Ready", + "compute_time": "P0DT00H00M07.635626S", + "compute_times": { + "total": 7.712093740701675, + "queued": 1.199349, + "clean_up": 0.0017684157937765121, + "create_cpp": 0.05451502092182636, + "file_setup": 0.258465563878417, + "compile_cpp": 4.719343299046159, + "create_r1cs": 0.010251201689243317, + "save_results": 0.004460163414478302, + "get_r1cs_info": 0.0008540749549865723, + "groth16_setup": 1.2751929629594088, + "export_verification_key": 1.3843229338526726, + "download_trusted_setup_file": 0.0024193767458200455 + }, + "file_sizes": { + "total": 225419, + "circuit": 213240, + "total_gb": 0.000225419, + "total_mb": 0.225419, + "circuit.dat": 6176, + "code.tar.gz": 498, + "circuit.zkey": 2580, + "verification_key": 2925 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", + "Model:": "85", + "CPU(s):": "96", + "BogoMIPS:": "5400.00", + "L2 cache:": "48 MiB (48 instances)", + "L3 cache:": "66 MiB (2 instances)", + "Stepping:": "4", + "L1d cache:": "1.5 MiB (48 instances)", + "L1i cache:": "1.5 MiB (48 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "46 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", + "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", + "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Core(s) per socket:": "24", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", + "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", + "Vulnerability Meltdown:": "Mitigation; PTI", + "Vulnerability Retbleed:": "Mitigation; IBRS", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", + "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": 0, + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0, + "num_wires": 4, + "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", + "witness_compiler": "c++" + }, + { + "circuit_id": "07f165fe-658f-4f60-9724-e13641c3dc6d", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-13T19:46:38.223Z", + "proving_scheme": "groth16", + "status": "Ready", + "compute_time": "P0DT00H00M08.167119S", + "compute_times": { + "total": 8.251142678782344, + "queued": 1.115337, + "clean_up": 0.0016193389892578125, + "create_cpp": 0.054599540308117867, + "file_setup": 0.25351906940340996, + "compile_cpp": 4.904584679752588, + "create_r1cs": 0.01984476111829281, + "save_results": 0.005771957337856293, + "get_r1cs_info": 0.0008576847612857819, + "groth16_setup": 1.522850263863802, + "export_verification_key": 1.4845417588949203, + "download_trusted_setup_file": 0.002574380487203598 + }, + "file_sizes": { + "total": 225420, + "circuit": 213240, + "total_gb": 0.00022542, + "total_mb": 0.22542, + "circuit.dat": 6176, + "code.tar.gz": 499, + "circuit.zkey": 2580, + "verification_key": 2925 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", + "Model:": "85", + "CPU(s):": "96", + "BogoMIPS:": "5400.00", + "L2 cache:": "48 MiB (48 instances)", + "L3 cache:": "66 MiB (2 instances)", + "Stepping:": "4", + "L1d cache:": "1.5 MiB (48 instances)", + "L1i cache:": "1.5 MiB (48 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "46 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", + "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", + "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Core(s) per socket:": "24", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", + "On-line CPU(s) list:": "0,1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41-49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89-95", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88", + "Vulnerability Meltdown:": "Mitigation; PTI", + "Vulnerability Retbleed:": "Mitigation; IBRS", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", + "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": 0, + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0, + "num_wires": 4, + "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", + "witness_compiler": "c++" + }, + { + "circuit_id": "5184ccc9-d9df-4f4c-85b5-dcc372be2b4b", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-13T19:46:37.738Z", + "proving_scheme": "groth16", + "status": "Ready", + "compute_time": "P0DT00H00M07.800540S", + "compute_times": { + "total": 7.890723425894976, + "queued": 1.168498, + "clean_up": 0.001091672107577324, + "create_cpp": 0.04187995567917824, + "file_setup": 0.27721855975687504, + "compile_cpp": 4.727179424837232, + "create_r1cs": 0.016916383057832718, + "save_results": 0.004303250461816788, + "get_r1cs_info": 0.0007656924426555634, + "groth16_setup": 1.459752507507801, + "export_verification_key": 1.3583893701434135, + "download_trusted_setup_file": 0.002651471644639969 + }, + "file_sizes": { + "total": 225450, + "circuit": 213240, + "total_gb": 0.00022545, + "total_mb": 0.22545, + "circuit.dat": 6176, + "code.tar.gz": 529, + "circuit.zkey": 2580, + "verification_key": 2925 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tgz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", + "Model:": "85", + "CPU(s):": "96", + "BogoMIPS:": "5400.00", + "L2 cache:": "48 MiB (48 instances)", + "L3 cache:": "66 MiB (2 instances)", + "Stepping:": "4", + "L1d cache:": "1.5 MiB (48 instances)", + "L1i cache:": "1.5 MiB (48 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "46 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", + "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", + "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Core(s) per socket:": "24", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", + "On-line CPU(s) list:": "0,1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41-49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89-95", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88", + "Vulnerability Meltdown:": "Mitigation; PTI", + "Vulnerability Retbleed:": "Mitigation; IBRS", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", + "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": 0, + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0, + "num_wires": 4, + "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", + "witness_compiler": "c++" + }, + { + "circuit_id": "cd1787b3-9b68-4c98-b749-10675b93a02d", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-13T19:46:37.375Z", + "proving_scheme": "groth16", + "status": "Ready", + "compute_time": "P0DT00H00M08.090137S", + "compute_times": { + "total": 8.167806182056665, + "queued": 1.338794, + "clean_up": 0.0015265382826328278, + "create_cpp": 0.06242942810058594, + "file_setup": 0.2405807003378868, + "compile_cpp": 5.083120491355658, + "create_r1cs": 0.01758597418665886, + "save_results": 0.004459673538804054, + "get_r1cs_info": 0.0007193218916654587, + "groth16_setup": 1.37510397285223, + "export_verification_key": 1.3791209738701582, + "download_trusted_setup_file": 0.0024771448224782944 + }, + "file_sizes": { + "total": 225424, + "circuit": 213240, + "total_gb": 0.000225424, + "total_mb": 0.225424, + "circuit.dat": 6176, + "code.tar.gz": 503, + "circuit.zkey": 2580, + "verification_key": 2925 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", + "Model:": "85", + "CPU(s):": "96", + "BogoMIPS:": "5400.00", + "L2 cache:": "48 MiB (48 instances)", + "L3 cache:": "66 MiB (2 instances)", + "Stepping:": "4", + "L1d cache:": "1.5 MiB (48 instances)", + "L1i cache:": "1.5 MiB (48 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "46 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", + "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", + "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Core(s) per socket:": "24", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", + "On-line CPU(s) list:": "0,1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41-49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89-95", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88", + "Vulnerability Meltdown:": "Mitigation; PTI", + "Vulnerability Retbleed:": "Mitigation; IBRS", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", + "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": 0, + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0, + "num_wires": 4, + "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", + "witness_compiler": "c++" + }, + { + "circuit_id": "92fce1d2-a24f-436c-8dcb-70128fef75ad", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-13T19:46:37.319Z", + "proving_scheme": "groth16", + "status": "Ready", + "compute_time": "P0DT00H00M07.515638S", + "compute_times": { + "total": 7.592755535617471, + "queued": 1.122921, + "clean_up": 0.0016377829015254974, + "create_cpp": 0.03891022130846977, + "file_setup": 0.24091425351798534, + "compile_cpp": 4.7493694350123405, + "create_r1cs": 0.017042923718690872, + "save_results": 0.005464419722557068, + "get_r1cs_info": 0.0006883256137371063, + "groth16_setup": 1.28771460801363, + "export_verification_key": 1.247961588203907, + "download_trusted_setup_file": 0.0025581959635019302 + }, + "file_sizes": { + "total": 225419, + "circuit": 213240, + "total_gb": 0.000225419, + "total_mb": 0.225419, + "circuit.dat": 6176, + "code.tar.gz": 498, + "circuit.zkey": 2580, + "verification_key": 2925 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", + "Model:": "85", + "CPU(s):": "96", + "BogoMIPS:": "5400.00", + "L2 cache:": "48 MiB (48 instances)", + "L3 cache:": "66 MiB (2 instances)", + "Stepping:": "4", + "L1d cache:": "1.5 MiB (48 instances)", + "L1i cache:": "1.5 MiB (48 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "46 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", + "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", + "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Core(s) per socket:": "24", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", + "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", + "Vulnerability Meltdown:": "Mitigation; PTI", + "Vulnerability Retbleed:": "Mitigation; IBRS", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", + "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": 0, + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0, + "num_wires": 4, + "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", + "witness_compiler": "c++" + }, + { + "circuit_id": "49d24c38-3549-4b6f-a0d0-121d79a9e042", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-13T19:43:21.432Z", + "proving_scheme": "groth16", + "status": "Failed", + "compute_time": "P0DT00H00M00.180365S", + "compute_times": { + "total": 0.2551115155220032, + "queued": 22.187026, + "create_cpp": 0.011886032298207283, + "file_setup": 0.24275113083422184 + }, + "file_sizes": { + "total": 422, + "total_gb": 4.22e-7, + "total_mb": 0.000422, + "code.tar.gz": 422 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", + "Model:": "85", + "CPU(s):": "96", + "BogoMIPS:": "5400.00", + "L2 cache:": "48 MiB (48 instances)", + "L3 cache:": "66 MiB (2 instances)", + "Stepping:": "4", + "L1d cache:": "1.5 MiB (48 instances)", + "L1i cache:": "1.5 MiB (48 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "46 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", + "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", + "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Core(s) per socket:": "24", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", + "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", + "Vulnerability Meltdown:": "Mitigation; PTI", + "Vulnerability Retbleed:": "Mitigation; IBRS", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", + "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": "cmd: circom2 --output /tmp/sindri/circuits/49d24c38-3549-4b6f-a0d0-121d79a9e042_1705175023619519 --c /tmp/sindri/circuits/49d24c38-3549-4b6f-a0d0-121d79a9e042_1705175023619519/code/circuit.circom stdout: stderr: error[P1001]: No main specified in the project structure\n\nprevious errors were found\n", + "curve": "bn254", + "degree": null, + "num_constraints": null, + "num_outputs": null, + "num_private_inputs": null, + "num_public_inputs": null, + "num_wires": null, + "trusted_setup_file": "", + "witness_compiler": "c++" + }, + { + "circuit_id": "be8d26a4-0c1f-4ed8-a9c1-92d821a1023f", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-13T19:43:20.830Z", + "proving_scheme": "groth16", + "status": "Failed", + "compute_time": "P0DT00H00M00.206542S", + "compute_times": { + "total": 0.2807184997946024, + "queued": 21.29796, + "create_cpp": 0.01408509910106659, + "file_setup": 0.26632064767181873 + }, + "file_sizes": { + "total": 454, + "total_gb": 4.54e-7, + "total_mb": 0.000454, + "code.tar.gz": 454 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tgz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", + "Model:": "85", + "CPU(s):": "96", + "BogoMIPS:": "5400.00", + "L2 cache:": "48 MiB (48 instances)", + "L3 cache:": "66 MiB (2 instances)", + "Stepping:": "4", + "L1d cache:": "1.5 MiB (48 instances)", + "L1i cache:": "1.5 MiB (48 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "46 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", + "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", + "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Core(s) per socket:": "24", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", + "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", + "Vulnerability Meltdown:": "Mitigation; PTI", + "Vulnerability Retbleed:": "Mitigation; IBRS", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", + "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": "cmd: circom2 --output /tmp/sindri/circuits/be8d26a4-0c1f-4ed8-a9c1-92d821a1023f_1705175022128513 --c /tmp/sindri/circuits/be8d26a4-0c1f-4ed8-a9c1-92d821a1023f_1705175022128513/code/circuit.circom stdout: stderr: error[P1001]: No main specified in the project structure\n\nprevious errors were found\n", + "curve": "bn254", + "degree": null, + "num_constraints": null, + "num_outputs": null, + "num_private_inputs": null, + "num_public_inputs": null, + "num_wires": null, + "trusted_setup_file": "", + "witness_compiler": "c++" + }, + { + "circuit_id": "829c7fb3-407a-4acb-9048-7052edeaef17", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-13T19:43:20.550Z", + "proving_scheme": "groth16", + "status": "Failed", + "compute_time": "P0DT00H00M00.201628S", + "compute_times": { + "total": 0.2771782800555229, + "queued": 20.013791, + "create_cpp": 0.01300826482474804, + "file_setup": 0.26369262114167213 + }, + "file_sizes": { + "total": 433, + "total_gb": 4.33e-7, + "total_mb": 0.000433, + "code.tar.gz": 433 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", + "Model:": "85", + "CPU(s):": "96", + "BogoMIPS:": "5400.00", + "L2 cache:": "48 MiB (48 instances)", + "L3 cache:": "66 MiB (2 instances)", + "Stepping:": "4", + "L1d cache:": "1.5 MiB (48 instances)", + "L1i cache:": "1.5 MiB (48 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "46 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", + "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", + "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Core(s) per socket:": "24", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", + "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", + "Vulnerability Meltdown:": "Mitigation; PTI", + "Vulnerability Retbleed:": "Mitigation; IBRS", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", + "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": "cmd: circom2 --output /tmp/sindri/circuits/829c7fb3-407a-4acb-9048-7052edeaef17_1705175020564282 --c /tmp/sindri/circuits/829c7fb3-407a-4acb-9048-7052edeaef17_1705175020564282/code/circuit.circom stdout: stderr: error[P1001]: No main specified in the project structure\n\nprevious errors were found\n", + "curve": "bn254", + "degree": null, + "num_constraints": null, + "num_outputs": null, + "num_private_inputs": null, + "num_public_inputs": null, + "num_wires": null, + "trusted_setup_file": "", + "witness_compiler": "c++" + }, + { + "circuit_id": "21254406-f848-4a42-96b1-50ae1a8a70f6", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-13T19:43:20.457Z", + "proving_scheme": "groth16", + "status": "Failed", + "compute_time": "P0DT00H00M00.210927S", + "compute_times": { + "total": 0.28701494075357914, + "queued": 18.586688, + "create_cpp": 0.01276908814907074, + "file_setup": 0.273587292060256 + }, + "file_sizes": { + "total": 423, + "total_gb": 4.23e-7, + "total_mb": 0.000423, + "code.tar.gz": 423 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", + "Model:": "85", + "CPU(s):": "96", + "BogoMIPS:": "5400.00", + "L2 cache:": "48 MiB (48 instances)", + "L3 cache:": "66 MiB (2 instances)", + "Stepping:": "4", + "L1d cache:": "1.5 MiB (48 instances)", + "L1i cache:": "1.5 MiB (48 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "46 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", + "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", + "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Core(s) per socket:": "24", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", + "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", + "Vulnerability Meltdown:": "Mitigation; PTI", + "Vulnerability Retbleed:": "Mitigation; IBRS", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", + "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": "cmd: circom2 --output /tmp/sindri/circuits/21254406-f848-4a42-96b1-50ae1a8a70f6_1705175019044217 --c /tmp/sindri/circuits/21254406-f848-4a42-96b1-50ae1a8a70f6_1705175019044217/code/circuit.circom stdout: stderr: error[P1001]: No main specified in the project structure\n\nprevious errors were found\n", + "curve": "bn254", + "degree": null, + "num_constraints": null, + "num_outputs": null, + "num_private_inputs": null, + "num_public_inputs": null, + "num_wires": null, + "trusted_setup_file": "", + "witness_compiler": "c++" + }, + { + "circuit_id": "86b85f20-069f-4b05-bc19-7dcc45d62d4d", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-13T19:03:40.161Z", + "proving_scheme": "groth16", + "status": "Failed", + "compute_time": "P0DT00H00M00.165028S", + "compute_times": { + "total": 0.23983060009777546, + "queued": 19.426277, + "create_cpp": 0.012881102040410042, + "file_setup": 0.22659419663250446 + }, + "file_sizes": { + "total": 425, + "total_gb": 4.25e-7, + "total_mb": 0.000425, + "code.tar.gz": 425 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", + "Model:": "85", + "CPU(s):": "96", + "BogoMIPS:": "5400.00", + "L2 cache:": "48 MiB (48 instances)", + "L3 cache:": "66 MiB (2 instances)", + "Stepping:": "4", + "L1d cache:": "1.5 MiB (48 instances)", + "L1i cache:": "1.5 MiB (48 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "46 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", + "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", + "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Core(s) per socket:": "24", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", + "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", + "Vulnerability Meltdown:": "Mitigation; PTI", + "Vulnerability Retbleed:": "Mitigation; IBRS", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", + "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": "cmd: circom2 --output /tmp/sindri/circuits/86b85f20-069f-4b05-bc19-7dcc45d62d4d_1705172639587962 --c /tmp/sindri/circuits/86b85f20-069f-4b05-bc19-7dcc45d62d4d_1705172639587962/code/circuit.circom stdout: stderr: error[P1001]: No main specified in the project structure\n\nprevious errors were found\n", + "curve": "bn254", + "degree": null, + "num_constraints": null, + "num_outputs": null, + "num_private_inputs": null, + "num_public_inputs": null, + "num_wires": null, + "trusted_setup_file": "", + "witness_compiler": "c++" + }, + { + "circuit_id": "911d63d1-2d4a-4f13-8ea6-bae46ca597f1", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-13T19:03:39.891Z", + "proving_scheme": "groth16", + "status": "Failed", + "compute_time": "P0DT00H00M00.170545S", + "compute_times": { + "total": 0.24807762540876865, + "queued": 18.378215, + "create_cpp": 0.012938465923070908, + "file_setup": 0.23475164733827114 + }, + "file_sizes": { + "total": 433, + "total_gb": 4.33e-7, + "total_mb": 0.000433, + "code.tar.gz": 433 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", + "Model:": "85", + "CPU(s):": "96", + "BogoMIPS:": "5400.00", + "L2 cache:": "48 MiB (48 instances)", + "L3 cache:": "66 MiB (2 instances)", + "Stepping:": "4", + "L1d cache:": "1.5 MiB (48 instances)", + "L1i cache:": "1.5 MiB (48 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "46 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", + "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", + "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Core(s) per socket:": "24", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", + "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", + "Vulnerability Meltdown:": "Mitigation; PTI", + "Vulnerability Retbleed:": "Mitigation; IBRS", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", + "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": "cmd: circom2 --output /tmp/sindri/circuits/911d63d1-2d4a-4f13-8ea6-bae46ca597f1_1705172638269260 --c /tmp/sindri/circuits/911d63d1-2d4a-4f13-8ea6-bae46ca597f1_1705172638269260/code/circuit.circom stdout: stderr: error[P1001]: No main specified in the project structure\n\nprevious errors were found\n", + "curve": "bn254", + "degree": null, + "num_constraints": null, + "num_outputs": null, + "num_private_inputs": null, + "num_public_inputs": null, + "num_wires": null, + "trusted_setup_file": "", + "witness_compiler": "c++" + }, + { + "circuit_id": "f56ce37c-23ce-4125-ad52-57ccc6feca54", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-13T19:03:39.814Z", + "proving_scheme": "groth16", + "status": "Failed", + "compute_time": "P0DT00H00M00.186595S", + "compute_times": { + "total": 0.26397472620010376, + "queued": 17.084112, + "create_cpp": 0.010645480826497078, + "file_setup": 0.2526652980595827 + }, + "file_sizes": { + "total": 454, + "total_gb": 4.54e-7, + "total_mb": 0.000454, + "code.tar.gz": 454 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tgz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", + "Model:": "85", + "CPU(s):": "96", + "BogoMIPS:": "5400.00", + "L2 cache:": "48 MiB (48 instances)", + "L3 cache:": "66 MiB (2 instances)", + "Stepping:": "4", + "L1d cache:": "1.5 MiB (48 instances)", + "L1i cache:": "1.5 MiB (48 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "46 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", + "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", + "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Core(s) per socket:": "24", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", + "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", + "Vulnerability Meltdown:": "Mitigation; PTI", + "Vulnerability Retbleed:": "Mitigation; IBRS", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", + "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": "cmd: circom2 --output /tmp/sindri/circuits/f56ce37c-23ce-4125-ad52-57ccc6feca54_1705172636898067 --c /tmp/sindri/circuits/f56ce37c-23ce-4125-ad52-57ccc6feca54_1705172636898067/code/circuit.circom stdout: stderr: error[P1001]: No main specified in the project structure\n\nprevious errors were found\n", + "curve": "bn254", + "degree": null, + "num_constraints": null, + "num_outputs": null, + "num_private_inputs": null, + "num_public_inputs": null, + "num_wires": null, + "trusted_setup_file": "", + "witness_compiler": "c++" + }, + { + "circuit_id": "593763cb-5ee6-4f17-86f0-92e33db49ebc", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-13T18:50:50.705Z", + "proving_scheme": "groth16", + "status": "Failed", + "compute_time": "P0DT00H00M00.198660S", + "compute_times": { + "total": 0.2762124240398407, + "queued": 2.350508, + "create_cpp": 0.013621769845485687, + "file_setup": 0.26214288361370564 + }, + "file_sizes": { + "total": 425, + "total_gb": 4.25e-7, + "total_mb": 0.000425, + "code.tar.gz": 425 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", + "Model:": "85", + "CPU(s):": "96", + "BogoMIPS:": "5400.00", + "L2 cache:": "48 MiB (48 instances)", + "L3 cache:": "66 MiB (2 instances)", + "Stepping:": "4", + "L1d cache:": "1.5 MiB (48 instances)", + "L1i cache:": "1.5 MiB (48 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "46 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", + "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", + "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Core(s) per socket:": "24", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", + "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", + "Vulnerability Meltdown:": "Mitigation; PTI", + "Vulnerability Retbleed:": "Mitigation; IBRS", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", + "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": "cmd: circom2 --output /tmp/sindri/circuits/593763cb-5ee6-4f17-86f0-92e33db49ebc_1705171853056248 --c /tmp/sindri/circuits/593763cb-5ee6-4f17-86f0-92e33db49ebc_1705171853056248/code/circuit.circom stdout: stderr: error[P1001]: No main specified in the project structure\n\nprevious errors were found\n", + "curve": "bn254", + "degree": null, + "num_constraints": null, + "num_outputs": null, + "num_private_inputs": null, + "num_public_inputs": null, + "num_wires": null, + "trusted_setup_file": "", + "witness_compiler": "c++" + }, + { + "circuit_id": "616d59a2-ede9-4aa2-b309-dceaad83f85c", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-13T18:50:50.409Z", + "proving_scheme": "groth16", + "status": "Failed", + "compute_time": "P0DT00H00M00.202851S", + "compute_times": { + "total": 0.27938831970095634, + "queued": 1.181081, + "create_cpp": 0.020855069160461426, + "file_setup": 0.25791895017027855 + }, + "file_sizes": { + "total": 454, + "total_gb": 4.54e-7, + "total_mb": 0.000454, + "code.tar.gz": 454 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tgz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", + "Model:": "85", + "CPU(s):": "96", + "BogoMIPS:": "5400.00", + "L2 cache:": "48 MiB (48 instances)", + "L3 cache:": "66 MiB (2 instances)", + "Stepping:": "4", + "L1d cache:": "1.5 MiB (48 instances)", + "L1i cache:": "1.5 MiB (48 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "46 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", + "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", + "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Core(s) per socket:": "24", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", + "On-line CPU(s) list:": "0,1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41-49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89-95", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88", + "Vulnerability Meltdown:": "Mitigation; PTI", + "Vulnerability Retbleed:": "Mitigation; IBRS", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", + "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": "cmd: circom2 --output /tmp/sindri/circuits/616d59a2-ede9-4aa2-b309-dceaad83f85c_1705171851590200 --c /tmp/sindri/circuits/616d59a2-ede9-4aa2-b309-dceaad83f85c_1705171851590200/code/circuit.circom stdout: stderr: error[P1001]: No main specified in the project structure\n\nprevious errors were found\n", + "curve": "bn254", + "degree": null, + "num_constraints": null, + "num_outputs": null, + "num_private_inputs": null, + "num_public_inputs": null, + "num_wires": null, + "trusted_setup_file": "", + "witness_compiler": "c++" + }, + { + "circuit_id": "3edc6e19-5c08-43d0-b4cd-1effce92610f", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-13T18:50:50.347Z", + "proving_scheme": "groth16", + "status": "Failed", + "compute_time": "P0DT00H00M00.203065S", + "compute_times": { + "total": 0.2812246270477772, + "queued": 1.181141, + "create_cpp": 0.013465851545333862, + "file_setup": 0.26729494892060757 + }, + "file_sizes": { + "total": 433, + "total_gb": 4.33e-7, + "total_mb": 0.000433, + "code.tar.gz": 433 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", + "Model:": "85", + "CPU(s):": "96", + "BogoMIPS:": "5400.00", + "L2 cache:": "48 MiB (48 instances)", + "L3 cache:": "66 MiB (2 instances)", + "Stepping:": "4", + "L1d cache:": "1.5 MiB (48 instances)", + "L1i cache:": "1.5 MiB (48 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "46 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", + "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", + "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Core(s) per socket:": "24", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", + "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", + "Vulnerability Meltdown:": "Mitigation; PTI", + "Vulnerability Retbleed:": "Mitigation; IBRS", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", + "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": "cmd: circom2 --output /tmp/sindri/circuits/3edc6e19-5c08-43d0-b4cd-1effce92610f_1705171851528535 --c /tmp/sindri/circuits/3edc6e19-5c08-43d0-b4cd-1effce92610f_1705171851528535/code/circuit.circom stdout: stderr: error[P1001]: No main specified in the project structure\n\nprevious errors were found\n", + "curve": "bn254", + "degree": null, + "num_constraints": null, + "num_outputs": null, + "num_private_inputs": null, + "num_public_inputs": null, + "num_wires": null, + "trusted_setup_file": "", + "witness_compiler": "c++" + }, + { + "circuit_id": "04ee9cfb-e70c-4f63-980f-1a3e93548c00", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-13T18:48:36.434Z", + "proving_scheme": "groth16", + "status": "Failed", + "compute_time": "P0DT00H00M00.201733S", + "compute_times": { + "total": 0.27434095926582813, + "queued": 18.015267, + "create_cpp": 0.012987535446882248, + "file_setup": 0.26098530925810337 + }, + "file_sizes": { + "total": 424, + "total_gb": 4.24e-7, + "total_mb": 0.000424, + "code.tar.gz": 424 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", + "Model:": "85", + "CPU(s):": "96", + "BogoMIPS:": "5400.00", + "L2 cache:": "48 MiB (48 instances)", + "L3 cache:": "66 MiB (2 instances)", + "Stepping:": "4", + "L1d cache:": "1.5 MiB (48 instances)", + "L1i cache:": "1.5 MiB (48 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "46 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", + "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", + "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Core(s) per socket:": "24", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", + "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", + "Vulnerability Meltdown:": "Mitigation; PTI", + "Vulnerability Retbleed:": "Mitigation; IBRS", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", + "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": "cmd: circom2 --output /tmp/sindri/circuits/04ee9cfb-e70c-4f63-980f-1a3e93548c00_1705171734449938 --c /tmp/sindri/circuits/04ee9cfb-e70c-4f63-980f-1a3e93548c00_1705171734449938/code/circuit.circom stdout: stderr: error[P1001]: No main specified in the project structure\n\nprevious errors were found\n", + "curve": "bn254", + "degree": null, + "num_constraints": null, + "num_outputs": null, + "num_private_inputs": null, + "num_public_inputs": null, + "num_wires": null, + "trusted_setup_file": "", + "witness_compiler": "c++" + }, + { + "circuit_id": "7bec40b6-96f9-4297-8387-28b69e6eb9f2", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-13T18:48:36.388Z", + "proving_scheme": "groth16", + "status": "Failed", + "compute_time": "P0DT00H00M00.202297S", + "compute_times": { + "total": 0.277168694883585, + "queued": 16.341514, + "create_cpp": 0.013526827096939087, + "file_setup": 0.2629995346069336 + }, + "file_sizes": { + "total": 454, + "total_gb": 4.54e-7, + "total_mb": 0.000454, + "code.tar.gz": 454 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tgz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", + "Model:": "85", + "CPU(s):": "96", + "BogoMIPS:": "5400.00", + "L2 cache:": "48 MiB (48 instances)", + "L3 cache:": "66 MiB (2 instances)", + "Stepping:": "4", + "L1d cache:": "1.5 MiB (48 instances)", + "L1i cache:": "1.5 MiB (48 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "46 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", + "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", + "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Core(s) per socket:": "24", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", + "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", + "Vulnerability Meltdown:": "Mitigation; PTI", + "Vulnerability Retbleed:": "Mitigation; IBRS", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", + "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": "cmd: circom2 --output /tmp/sindri/circuits/7bec40b6-96f9-4297-8387-28b69e6eb9f2_1705171732729882 --c /tmp/sindri/circuits/7bec40b6-96f9-4297-8387-28b69e6eb9f2_1705171732729882/code/circuit.circom stdout: stderr: error[P1001]: No main specified in the project structure\n\nprevious errors were found\n", + "curve": "bn254", + "degree": null, + "num_constraints": null, + "num_outputs": null, + "num_private_inputs": null, + "num_public_inputs": null, + "num_wires": null, + "trusted_setup_file": "", + "witness_compiler": "c++" + }, + { + "circuit_id": "bd2a2cab-9b46-4d8f-abe7-c70543cb3c05", + "circuit_name": "circom", + "circuit_type": "circom", + "date_created": "2024-01-13T18:10:06.690Z", + "proving_scheme": "groth16", + "status": "Ready", + "compute_time": "P0DT00H00M08.109980S", + "compute_times": { + "total": 8.184498570859432, + "queued": 15.479573, + "clean_up": 0.011767888441681862, + "create_cpp": 0.07400684803724289, + "file_setup": 0.291596170514822, + "compile_cpp": 5.010360641404986, + "create_r1cs": 0.03274575620889664, + "save_results": 0.005458444356918335, + "get_r1cs_info": 0.0007813666015863419, + "groth16_setup": 1.3319661114364862, + "export_verification_key": 1.4227301441133022, + "download_trusted_setup_file": 0.0024998728185892105 + }, + "file_sizes": { + "total": 1719978, + "circuit": 221992, + "total_gb": 0.001719978, + "total_mb": 1.719978, + "circuit.dat": 6264, + "code.tar.gz": 1485241, + "circuit.zkey": 3376, + "verification_key": 3105 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom.tar.gz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", + "Model:": "85", + "CPU(s):": "96", + "BogoMIPS:": "5400.00", + "L2 cache:": "48 MiB (48 instances)", + "L3 cache:": "66 MiB (2 instances)", + "Stepping:": "4", + "L1d cache:": "1.5 MiB (48 instances)", + "L1i cache:": "1.5 MiB (48 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "46 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", + "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", + "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Core(s) per socket:": "24", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", + "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", + "Vulnerability Meltdown:": "Mitigation; PTI", + "Vulnerability Retbleed:": "Mitigation; IBRS", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", + "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": 1, + "num_constraints": 2, + "num_outputs": 1, + "num_private_inputs": 1, + "num_public_inputs": 1, + "num_wires": 5, + "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", + "witness_compiler": "c++" + }, + { + "circuit_id": "36d8c583-a7a7-409f-802f-9e2176488114", + "circuit_name": "circom", + "circuit_type": "circom", + "date_created": "2024-01-12T20:17:55.601Z", + "proving_scheme": "groth16", + "status": "Ready", + "compute_time": "P0DT00H00M07.845599S", + "compute_times": { + "total": 7.926630346104503, + "queued": 21.751844, + "clean_up": 0.009552665054798126, + "create_cpp": 0.06667437590658665, + "file_setup": 0.3097714204341173, + "compile_cpp": 4.566421199589968, + "create_r1cs": 0.03019201196730137, + "save_results": 0.0054127369076013565, + "get_r1cs_info": 0.0007427893579006195, + "groth16_setup": 1.4206766039133072, + "export_verification_key": 1.5140666011720896, + "download_trusted_setup_file": 0.00251016765832901 + }, + "file_sizes": { + "total": 1719951, + "circuit": 221992, + "total_gb": 0.001719951, + "total_mb": 1.719951, + "circuit.dat": 6264, + "code.tar.gz": 1485214, + "circuit.zkey": 3376, + "verification_key": 3105 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom.tar.gz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", + "Model:": "85", + "CPU(s):": "96", + "BogoMIPS:": "5400.00", + "L2 cache:": "48 MiB (48 instances)", + "L3 cache:": "66 MiB (2 instances)", + "Stepping:": "4", + "L1d cache:": "1.5 MiB (48 instances)", + "L1i cache:": "1.5 MiB (48 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "46 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", + "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", + "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Core(s) per socket:": "24", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", + "On-line CPU(s) list:": "0,1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41-49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89-95", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88", + "Vulnerability Meltdown:": "Mitigation; PTI", + "Vulnerability Retbleed:": "Mitigation; IBRS", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", + "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": 1, + "num_constraints": 2, + "num_outputs": 1, + "num_private_inputs": 1, + "num_public_inputs": 1, + "num_wires": 5, + "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", + "witness_compiler": "c++" + } + ], + "rawHeaders": [ + "Content-Length", + "1149716", + "Content-Type", + "application/json; charset=utf-8", + "Date", + "Mon, 15 Jan 2024 13:31:27 GMT", + "Referrer-Policy", + "same-origin", + "Server", + "gunicorn", + "Vary", + "Cookie, origin", + "X-Content-Type-Options", + "nosniff", + "X-Frame-Options", + "SAMEORIGIN" + ], + "responseIsBinary": false + }, + { + "scope": "https://sindri.app:443", + "method": "POST", + "path": "/api/v1/circuit/create", + "body": "2d2d2d2d2d2d5765624b6974466f726d426f756e64617279477037366b4354563859316166486e610d0a436f6e74656e742d446973706f736974696f6e3a20666f726d2d646174613b206e616d653d2274616773220d0a0d0a66726f6d2d62726f777365722d66696c652d61727261792d666f722d6765742d616c6c2d636972637569742d70726f6f66730d0a2d2d2d2d2d2d5765624b6974466f726d426f756e64617279477037366b4354563859316166486e610d0a436f6e74656e742d446973706f736974696f6e3a20666f726d2d646174613b206e616d653d2266696c6573223b2066696c656e616d653d22636972636f6d2d6d756c7469706c696572322e7461722e677a220d0a436f6e74656e742d547970653a206170706c69636174696f6e2f6f637465742d73747265616d0d0a0d0a1f8b0800800092650003edd3bd6edb30100060cf7a8a83d0c176625196141bb0eb295d33252f40d38cc5562209f2e4a008faeea57e9c7f20056ab81dee5b24dd89a428de09e584a9677553a1b295922e6322841a8589e852a3bf9706cbe5b2bb066fafe962998fe6c5555114699ab5f17991e7c508d213acfda9c6237700e758ea7f641ddfd71cfab3862c4993741d456c1add95cac3500a80b2b6154709a294e287072c398200d5de4938168fe0a88c06730f1cb8dec136896e4de38484f10d77a284797609599ae593154425a2f52bc67646f8a1d41265d85e222abd9fb5a78272c71e9cea9e872ff1ec4f0786b055d5eba1530610454f9bb9792e7a184fe0b14d020063f04d8a8abba7ed78b5d7bcf2497821e4fb2750da36087cfd4170fb3a681a6ca362fdbcc0b5d11e1d571a8fb30af8bad9841f37ed47ff8aa27607464b8d50871761f3f27bc793757492f317effbdf2bbd732af9ee8d3ec9129ff67f9e656ffa3f5f140beaff73780cb5177ff1a1af6b1eaf203e76d75004dc5ac6ad6287f91099d55cab7be971d68fe9ca24be6c67d1bc96ed14ef4baacf0f7d78f7d3be786d4835eed005b73abb2afa9875e610daf7b65da6cbed9dc172bee8b30f0ab5f4febaeb72e9ba092f2ee2d037fffa8f12420821841042082184104208218410420821849cd76f0d0ac6f3002800000d0a2d2d2d2d2d2d5765624b6974466f726d426f756e64617279477037366b4354563859316166486e612d2d0d0a", + "status": 201, + "response": { + "circuit_id": "36e99794-bf82-45ba-84e2-473801d04601", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-15T13:31:27.344Z", + "proving_scheme": "groth16", + "status": "Queued", + "compute_time": null, + "compute_times": null, + "file_sizes": { + "code.tar.gz": 497, + "total": 497, + "total_mb": 0.000497, + "total_gb": 4.97e-7 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "worker_hardware": null, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": null, + "num_constraints": null, + "num_outputs": null, + "num_private_inputs": null, + "num_public_inputs": null, + "num_wires": null, + "trusted_setup_file": "", + "witness_compiler": "c++" + }, + "rawHeaders": [ + "Content-Length", + "750", + "Content-Type", + "application/json; charset=utf-8", + "Date", + "Mon, 15 Jan 2024 13:31:27 GMT", + "Referrer-Policy", + "same-origin", + "Server", + "gunicorn", + "Vary", + "Cookie, origin", + "X-Content-Type-Options", + "nosniff", + "X-Frame-Options", + "SAMEORIGIN" + ], + "responseIsBinary": false + }, + { + "scope": "https://sindri.app:443", + "method": "POST", + "path": "/api/v1/circuit/create", + "body": "2d2d2d2d2d2d5765624b6974466f726d426f756e6461727955623553336177426a30436b364468310d0a436f6e74656e742d446973706f736974696f6e3a20666f726d2d646174613b206e616d653d2274616773220d0a0d0a66726f6d2d62726f777365722d66696c652d61727261792d666f722d6765742d636972637569740d0a2d2d2d2d2d2d5765624b6974466f726d426f756e6461727955623553336177426a30436b364468310d0a436f6e74656e742d446973706f736974696f6e3a20666f726d2d646174613b206e616d653d2266696c6573223b2066696c656e616d653d22636972636f6d2d6d756c7469706c696572322e7461722e677a220d0a436f6e74656e742d547970653a206170706c69636174696f6e2f6f637465742d73747265616d0d0a0d0a1f8b0800800092650003edd3bd6edb30100060cf7a8a83d0c176625196141bb0eb295d33252f40d38cc5562209f2e4a008faeea57e9c7f20056ab81dee5b24dd89a428de09e584a9677553a1b295922e6322841a8589e852a3bf9706cbe5b2bb066fafe962998fe6c5555114699ab5f17991e7c508d213acfda9c6237700e758ea7f641ddfd71cfab3862c4993741d456c1add95cac3500a80b2b6154709a294e287072c398200d5de4938168fe0a88c06730f1cb8dec136896e4de38484f10d77a284797609599ae593154425a2f52bc67646f8a1d41265d85e222abd9fb5a78272c71e9cea9e872ff1ec4f0786b055d5eba1530610454f9bb9792e7a184fe0b14d020063f04d8a8abba7ed78b5d7bcf2497821e4fb2750da36087cfd4170fb3a681a6ca362fdbcc0b5d11e1d571a8fb30af8bad9841f37ed47ff8aa27607464b8d50871761f3f27bc793757492f317effbdf2bbd732af9ee8d3ec9129ff67f9e656ffa3f5f140beaff73780cb5177ff1a1af6b1eaf203e76d75004dc5ac6ad6287f91099d55cab7be971d68fe9ca24be6c67d1bc96ed14ef4baacf0f7d78f7d3be786d4835eed005b73abb2afa9875e610daf7b65da6cbed9dc172bee8b30f0ab5f4febaeb72e9ba092f2ee2d037fffa8f12420821841042082184104208218410420821849cd76f0d0ac6f3002800000d0a2d2d2d2d2d2d5765624b6974466f726d426f756e6461727955623553336177426a30436b364468312d2d0d0a", + "status": 201, + "response": { + "circuit_id": "d2b35982-db22-46ed-8398-633a67326497", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-15T13:31:27.371Z", + "proving_scheme": "groth16", + "status": "Queued", + "compute_time": null, + "compute_times": null, + "file_sizes": { + "code.tar.gz": 497, + "total": 497, + "total_mb": 0.000497, + "total_gb": 4.97e-7 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "worker_hardware": null, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": null, + "num_constraints": null, + "num_outputs": null, + "num_private_inputs": null, + "num_public_inputs": null, + "num_wires": null, + "trusted_setup_file": "", + "witness_compiler": "c++" + }, + "rawHeaders": [ + "Content-Length", + "750", + "Content-Type", + "application/json; charset=utf-8", + "Date", + "Mon, 15 Jan 2024 13:31:27 GMT", + "Referrer-Policy", + "same-origin", + "Server", + "gunicorn", + "Vary", + "Cookie, origin", + "X-Content-Type-Options", + "nosniff", + "X-Frame-Options", + "SAMEORIGIN" + ], + "responseIsBinary": false + }, + { + "scope": "https://sindri.app:443", + "method": "POST", + "path": "/api/v1/circuit/create", + "body": "2d2d2d2d2d2d5765624b6974466f726d426f756e64617279434d625a4970333355633444325269380d0a436f6e74656e742d446973706f736974696f6e3a20666f726d2d646174613b206e616d653d2274616773220d0a0d0a66726f6d2d62726f777365722d66696c652d61727261792d666f722d70726f76652d636972637569740d0a2d2d2d2d2d2d5765624b6974466f726d426f756e64617279434d625a4970333355633444325269380d0a436f6e74656e742d446973706f736974696f6e3a20666f726d2d646174613b206e616d653d2266696c6573223b2066696c656e616d653d22636972636f6d2d6d756c7469706c696572322e7461722e677a220d0a436f6e74656e742d547970653a206170706c69636174696f6e2f6f637465742d73747265616d0d0a0d0a1f8b0800800092650003edd3bd6edb30100060cf7a8a83d0c176625196141bb0eb295d33252f40d38cc5562209f2e4a008faeea57e9c7f20056ab81dee5b24dd89a428de09e584a9677553a1b295922e6322841a8589e852a3bf9706cbe5b2bb066fafe962998fe6c5555114699ab5f17991e7c508d213acfda9c6237700e758ea7f641ddfd71cfab3862c4993741d456c1add95cac3500a80b2b6154709a294e287072c398200d5de4938168fe0a88c06730f1cb8dec136896e4de38484f10d77a284797609599ae593154425a2f52bc67646f8a1d41265d85e222abd9fb5a78272c71e9cea9e872ff1ec4f0786b055d5eba1530610454f9bb9792e7a184fe0b14d020063f04d8a8abba7ed78b5d7bcf2497821e4fb2750da36087cfd4170fb3a681a6ca362fdbcc0b5d11e1d571a8fb30af8bad9841f37ed47ff8aa27607464b8d50871761f3f27bc793757492f317effbdf2bbd732af9ee8d3ec9129ff67f9e656ffa3f5f140beaff73780cb5177ff1a1af6b1eaf203e76d75004dc5ac6ad6287f91099d55cab7be971d68fe9ca24be6c67d1bc96ed14ef4baacf0f7d78f7d3be786d4835eed005b73abb2afa9875e610daf7b65da6cbed9dc172bee8b30f0ab5f4febaeb72e9ba092f2ee2d037fffa8f12420821841042082184104208218410420821849cd76f0d0ac6f3002800000d0a2d2d2d2d2d2d5765624b6974466f726d426f756e64617279434d625a4970333355633444325269382d2d0d0a", + "status": 201, + "response": { + "circuit_id": "cd090915-c649-4d03-a97b-e962996ddd20", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-15T13:31:27.776Z", + "proving_scheme": "groth16", + "status": "Queued", + "compute_time": null, + "compute_times": null, + "file_sizes": { + "code.tar.gz": 497, + "total": 497, + "total_mb": 0.000497, + "total_gb": 4.97e-7 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "worker_hardware": null, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": null, + "num_constraints": null, + "num_outputs": null, + "num_private_inputs": null, + "num_public_inputs": null, + "num_wires": null, + "trusted_setup_file": "", + "witness_compiler": "c++" + }, + "rawHeaders": [ + "Content-Length", + "750", + "Content-Type", + "application/json; charset=utf-8", + "Date", + "Mon, 15 Jan 2024 13:31:28 GMT", + "Referrer-Policy", + "same-origin", + "Server", + "gunicorn", + "Vary", + "Cookie, origin", + "X-Content-Type-Options", + "nosniff", + "X-Frame-Options", + "SAMEORIGIN" + ], + "responseIsBinary": false + }, + { + "scope": "https://sindri.app:443", + "method": "POST", + "path": "/api/v1/circuit/create", + "body": "2d2d2d2d2d2d5765624b6974466f726d426f756e646172796a77783562683732444a44726b63316e0d0a436f6e74656e742d446973706f736974696f6e3a20666f726d2d646174613b206e616d653d2274616773220d0a0d0a66726f6d2d62726f777365722d66696c652d61727261790d0a2d2d2d2d2d2d5765624b6974466f726d426f756e646172796a77783562683732444a44726b63316e0d0a436f6e74656e742d446973706f736974696f6e3a20666f726d2d646174613b206e616d653d2266696c6573223b2066696c656e616d653d22636972636f6d2d6d756c7469706c696572322e7461722e677a220d0a436f6e74656e742d547970653a206170706c69636174696f6e2f6f637465742d73747265616d0d0a0d0a1f8b0800800092650003edd3bd6edb30100060cf7a8a83d0c176625196141bb0eb295d33252f40d38cc5562209f2e4a008faeea57e9c7f20056ab81dee5b24dd89a428de09e584a9677553a1b295922e6322841a8589e852a3bf9706cbe5b2bb066fafe962998fe6c5555114699ab5f17991e7c508d213acfda9c6237700e758ea7f641ddfd71cfab3862c4993741d456c1add95cac3500a80b2b6154709a294e287072c398200d5de4938168fe0a88c06730f1cb8dec136896e4de38484f10d77a284797609599ae593154425a2f52bc67646f8a1d41265d85e222abd9fb5a78272c71e9cea9e872ff1ec4f0786b055d5eba1530610454f9bb9792e7a184fe0b14d020063f04d8a8abba7ed78b5d7bcf2497821e4fb2750da36087cfd4170fb3a681a6ca362fdbcc0b5d11e1d571a8fb30af8bad9841f37ed47ff8aa27607464b8d50871761f3f27bc793757492f317effbdf2bbd732af9ee8d3ec9129ff67f9e656ffa3f5f140beaff73780cb5177ff1a1af6b1eaf203e76d75004dc5ac6ad6287f91099d55cab7be971d68fe9ca24be6c67d1bc96ed14ef4baacf0f7d78f7d3be786d4835eed005b73abb2afa9875e610daf7b65da6cbed9dc172bee8b30f0ab5f4febaeb72e9ba092f2ee2d037fffa8f12420821841042082184104208218410420821849cd76f0d0ac6f3002800000d0a2d2d2d2d2d2d5765624b6974466f726d426f756e646172796a77783562683732444a44726b63316e2d2d0d0a", + "status": 201, + "response": { + "circuit_id": "16cc9ce9-c462-4544-889b-b92a8aa2a163", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-15T13:31:28.205Z", + "proving_scheme": "groth16", + "status": "Queued", + "compute_time": null, + "compute_times": null, + "file_sizes": { + "code.tar.gz": 497, + "total": 497, + "total_mb": 0.000497, + "total_gb": 4.97e-7 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "worker_hardware": null, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": null, + "num_constraints": null, + "num_outputs": null, + "num_private_inputs": null, + "num_public_inputs": null, + "num_wires": null, + "trusted_setup_file": "", + "witness_compiler": "c++" + }, + "rawHeaders": [ + "Content-Length", + "750", + "Content-Type", + "application/json; charset=utf-8", + "Date", + "Mon, 15 Jan 2024 13:31:28 GMT", + "Referrer-Policy", + "same-origin", + "Server", + "gunicorn", + "Vary", + "Cookie, origin", + "X-Content-Type-Options", + "nosniff", + "X-Frame-Options", + "SAMEORIGIN" + ], + "responseIsBinary": false + }, + { + "scope": "https://sindri.app:443", + "method": "GET", + "path": "/api/v1/proof/a0cd0c31-178d-40ab-befd-56240cfac47b/detail?include_proof_input=true&include_proof=true&include_public=true&include_verification_key=true", + "body": "", + "status": 200, + "response": { + "proof_id": "a0cd0c31-178d-40ab-befd-56240cfac47b", + "circuit_name": "circom-multiplier2", + "circuit_id": "ddd1b9a9-83e6-41d1-8936-3bff88aa6921", + "circuit_type": "circom", + "date_created": "2024-01-15T13:29:36.311Z", + "perform_verify": false, + "status": "Ready", + "compute_time": "P0DT00H00M02.092256S", + "compute_times": { + "prove": 0.36259699426591396, + "total": 2.1656957883387804, + "queued": 5.830407, + "clean_up": 0.0003967471420764923, + "file_setup": 0.6623526718467474, + "save_results": 0.18246298655867577, + "generate_witness_c": 0.9574985150247812 + }, + "file_sizes": { + "proof": 705, + "total": 711, + "public": 6, + "total_gb": 7.11e-7, + "total_mb": 0.000711 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "proof_input": { + "a": "5", + "b": "4" + }, + "proof": { + "pi_a": [ + "5346672792612665895879097684889464681600545854577243328960502143955185642576", + "3170571356438707584672941324135913538071385922458856792406831050435298505634", + "1" + ], + "pi_b": [ + [ + "10623862551051493546947422692954097054424010117276895010518953837021259367402", + "13610091419728856434879250805362685082524466882565823798990441615623849871792" + ], + [ + "2010204130190154610305999773731005536504094683615436736763903894799874388088", + "2684807615561583827115918125686218300611118526968032643802029466713497255955" + ], + [ + "1", + "0" + ] + ], + "pi_c": [ + "555967559459638015933464363066764271136863544701016147190582936791869795641", + "20231737602682548286853454243258109456453746642462103822807470357334953299831", + "1" + ], + "protocol": "groth16" + }, + "prover_implementation": { + "name": "GPU Tachyonic", + "smbc": 6, + "smcurve": "spparkx.alt_bn128", + "smreplicate": false + }, + "public": [ + "20" + ], + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nopl nonstop_tsc cpuid extd_apicid aperfmperf rapl pni pclmulqdq monitor ssse3 fma cx16 pcid sse4_1 sse4_2 movbe popcnt aes xsave avx f16c rdrand lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt tce topoext perfctr_core perfctr_nb bpext perfctr_llc mwaitx cpb cat_l3 cdp_l3 invpcid_single hw_pstate ssbd mba ibrs ibpb stibp vmmcall fsgsbase bmi1 avx2 smep bmi2 invpcid cqm rdt_a rdseed adx smap clflushopt clwb sha_ni xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local clzero irperf xsaveerptr rdpru wbnoinvd amd_ppin brs arat npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold v_vmsave_vmload vgif v_spec_ctrl umip pku ospke vaes vpclmulqdq rdpid overflow_recov succor smca", + "Model:": "1", + "CPU(s):": "128", + "BogoMIPS:": "5190.16", + "L2 cache:": "32 MiB (64 instances)", + "L3 cache:": "256 MiB (8 instances)", + "Stepping:": "1", + "L1d cache:": "2 MiB (64 instances)", + "L1i cache:": "2 MiB (64 instances)", + "Socket(s):": "2", + "Vendor ID:": "AuthenticAMD", + "Byte Order:": "Little Endian", + "CPU family:": "25", + "Model name:": "AMD EPYC 7513 32-Core Processor", + "CPU max MHz:": "3681.6399", + "CPU min MHz:": "1500.0000", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "48 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "AMD-V", + "Frequency boost:": "enabled", + "NUMA node0 CPU(s):": "0-31,64-95", + "NUMA node1 CPU(s):": "32-63,96-127", + "Vulnerability Mds:": "Not affected", + "Core(s) per socket:": "32", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Not affected", + "On-line CPU(s) list:": "0,2-4,6-31,35-64,66-68,70-95,99-127", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "1,5,32-34,65,69,96-98", + "Vulnerability Meltdown:": "Not affected", + "Vulnerability Retbleed:": "Not affected", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; Retpolines, IBPB conditional, IBRS_FW, STIBP always-on, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "Not affected", + "Vulnerability Mmio stale data:": "Not affected", + "Vulnerability Tsx async abort:": "Not affected", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [ + { + "id": 0, + "name": "NVIDIA RTX A6000", + "uuid": "GPU-bfa26f0f-c563-4d7b-2157-ca283ea42f01", + "driver": "525.125.06", + "serial": "1325121022674", + "memory_total_MiB": 49140 + } + ], + "num_gpus": 1 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": { + "protocol": "groth16", + "curve": "bn128", + "nPublic": 1, + "vk_alpha_1": [ + "20491192805390485299153009773594534940189261866228447918068658471970481763042", + "9383485363053290200918347156157836566562967994039712273449902621266178545958", + "1" + ], + "vk_beta_2": [ + [ + "6375614351688725206403948262868962793625744043794305715222011528459656738731", + "4252822878758300859123897981450591353533073413197771768651442665752259397132" + ], + [ + "10505242626370262277552901082094356697409835680220590971873171140371331206856", + "21847035105528745403288232691147584728191162732299865338377159692350059136679" + ], + [ + "1", + "0" + ] + ], + "vk_gamma_2": [ + [ + "10857046999023057135944570762232829481370756359578518086990519993285655852781", + "11559732032986387107991004021392285783925812861821192530917403151452391805634" + ], + [ + "8495653923123431417604973247489272438418190587263600148770280649306958101930", + "4082367875863433681332203403145435568316851327593401208105741076214120093531" + ], + [ + "1", + "0" + ] + ], + "vk_delta_2": [ + [ + "10857046999023057135944570762232829481370756359578518086990519993285655852781", + "11559732032986387107991004021392285783925812861821192530917403151452391805634" + ], + [ + "8495653923123431417604973247489272438418190587263600148770280649306958101930", + "4082367875863433681332203403145435568316851327593401208105741076214120093531" + ], + [ + "1", + "0" + ] + ], + "vk_alphabeta_12": [ + [ + [ + "2029413683389138792403550203267699914886160938906632433982220835551125967885", + "21072700047562757817161031222997517981543347628379360635925549008442030252106" + ], + [ + "5940354580057074848093997050200682056184807770593307860589430076672439820312", + "12156638873931618554171829126792193045421052652279363021382169897324752428276" + ], + [ + "7898200236362823042373859371574133993780991612861777490112507062703164551277", + "7074218545237549455313236346927434013100842096812539264420499035217050630853" + ] + ], + [ + [ + "7077479683546002997211712695946002074877511277312570035766170199895071832130", + "10093483419865920389913245021038182291233451549023025229112148274109565435465" + ], + [ + "4595479056700221319381530156280926371456704509942304414423590385166031118820", + "19831328484489333784475432780421641293929726139240675179672856274388269393268" + ], + [ + "11934129596455521040620786944827826205713621633706285934057045369193958244500", + "8037395052364110730298837004334506829870972346962140206007064471173334027475" + ] + ] + ], + "IC": [ + [ + "6819801395408938350212900248749732364821477541620635511814266536599629892365", + "9092252330033992554755034971584864587974280972948086568597554018278609861372", + "1" + ], + [ + "17882351432929302592725330552407222299541667716607588771282887857165175611387", + "18907419617206324833977586007131055763810739835484972981819026406579664278293", + "1" + ] + ] + }, + "error": null + }, + "rawHeaders": [ + "Content-Length", + "7132", + "Content-Type", + "application/json; charset=utf-8", + "Date", + "Mon, 15 Jan 2024 13:31:28 GMT", + "Referrer-Policy", + "same-origin", + "Server", + "gunicorn", + "Vary", + "Cookie, origin", + "X-Content-Type-Options", + "nosniff", + "X-Frame-Options", + "SAMEORIGIN" + ], + "responseIsBinary": false + }, + { + "scope": "https://sindri.app:443", + "method": "GET", + "path": "/api/v1/circuit/36e99794-bf82-45ba-84e2-473801d04601/detail?include_verification_key=false", + "body": "", + "status": 200, + "response": { + "circuit_id": "36e99794-bf82-45ba-84e2-473801d04601", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-15T13:31:27.344Z", + "proving_scheme": "groth16", + "status": "In Progress", + "compute_time": null, + "compute_times": { + "total": 0.00027553096879273653, + "queued": 0.972193 + }, + "file_sizes": { + "total": 497, + "total_gb": 4.97e-7, + "total_mb": 0.000497, + "code.tar.gz": 497 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf tsc_known_freq pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cat_l2 cdp_l3 invpcid_single intel_ppin cdp_l2 ssbd mba ibrs ibpb stibp ibrs_enhanced tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 avx2 smep bmi2 erms invpcid cqm rdt_a avx512f avx512dq rdseed adx smap avx512ifma clflushopt clwb intel_pt avx512cd sha_ni avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local split_lock_detect avx_vnni avx512_bf16 wbnoinvd dtherm ida arat pln pts hwp hwp_act_window hwp_epp hwp_pkg_req hfi avx512vbmi umip pku ospke waitpkg avx512_vbmi2 gfni vaes vpclmulqdq avx512_vnni avx512_bitalg tme avx512_vpopcntdq la57 rdpid bus_lock_detect cldemote movdiri movdir64b enqcmd fsrm md_clear serialize tsxldtrk pconfig arch_lbr ibt amx_bf16 avx512_fp16 amx_tile amx_int8 flush_l1d arch_capabilities", + "Model:": "143", + "CPU(s):": "128", + "BogoMIPS:": "5600.00", + "L2 cache:": "128 MiB (64 instances)", + "L3 cache:": "120 MiB (2 instances)", + "Stepping:": "7", + "L1d cache:": "3 MiB (64 instances)", + "L1i cache:": "2 MiB (64 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8462Y+", + "CPU max MHz:": "4100.0000", + "CPU min MHz:": "800.0000", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "52 bits physical, 57 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0-31,64-95", + "NUMA node1 CPU(s):": "32-63,96-127", + "Vulnerability Mds:": "Not affected", + "Core(s) per socket:": "32", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Not affected", + "On-line CPU(s) list:": "0,5-64,69-127", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "1-4,65-68", + "Vulnerability Meltdown:": "Not affected", + "Vulnerability Retbleed:": "Not affected", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; Enhanced IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS SW sequence", + "Vulnerability Itlb multihit:": "Not affected", + "Vulnerability Mmio stale data:": "Not affected", + "Vulnerability Tsx async abort:": "Not affected", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": null, + "num_constraints": null, + "num_outputs": null, + "num_private_inputs": null, + "num_public_inputs": null, + "num_wires": null, + "trusted_setup_file": "", + "witness_compiler": "c++" + }, + "rawHeaders": [ + "Content-Length", + "3643", + "Content-Type", + "application/json; charset=utf-8", + "Date", + "Mon, 15 Jan 2024 13:31:29 GMT", + "Referrer-Policy", + "same-origin", + "Server", + "gunicorn", + "Vary", + "Cookie, origin", + "X-Content-Type-Options", + "nosniff", + "X-Frame-Options", + "SAMEORIGIN" + ], + "responseIsBinary": false + }, + { + "scope": "https://sindri.app:443", + "method": "GET", + "path": "/api/v1/circuit/d2b35982-db22-46ed-8398-633a67326497/detail?include_verification_key=false", + "body": "", + "status": 200, + "response": { + "circuit_id": "d2b35982-db22-46ed-8398-633a67326497", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-15T13:31:27.371Z", + "proving_scheme": "groth16", + "status": "In Progress", + "compute_time": null, + "compute_times": { + "total": 0.0002155390102416277, + "queued": 1.002764 + }, + "file_sizes": { + "total": 497, + "total_gb": 4.97e-7, + "total_mb": 0.000497, + "code.tar.gz": 497 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf tsc_known_freq pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cat_l2 cdp_l3 invpcid_single intel_ppin cdp_l2 ssbd mba ibrs ibpb stibp ibrs_enhanced tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 avx2 smep bmi2 erms invpcid cqm rdt_a avx512f avx512dq rdseed adx smap avx512ifma clflushopt clwb intel_pt avx512cd sha_ni avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local split_lock_detect avx_vnni avx512_bf16 wbnoinvd dtherm ida arat pln pts hwp hwp_act_window hwp_epp hwp_pkg_req hfi avx512vbmi umip pku ospke waitpkg avx512_vbmi2 gfni vaes vpclmulqdq avx512_vnni avx512_bitalg tme avx512_vpopcntdq la57 rdpid bus_lock_detect cldemote movdiri movdir64b enqcmd fsrm md_clear serialize tsxldtrk pconfig arch_lbr ibt amx_bf16 avx512_fp16 amx_tile amx_int8 flush_l1d arch_capabilities", + "Model:": "143", + "CPU(s):": "128", + "BogoMIPS:": "5600.00", + "L2 cache:": "128 MiB (64 instances)", + "L3 cache:": "120 MiB (2 instances)", + "Stepping:": "7", + "L1d cache:": "3 MiB (64 instances)", + "L1i cache:": "2 MiB (64 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8462Y+", + "CPU max MHz:": "4100.0000", + "CPU min MHz:": "800.0000", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "52 bits physical, 57 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0-31,64-95", + "NUMA node1 CPU(s):": "32-63,96-127", + "Vulnerability Mds:": "Not affected", + "Core(s) per socket:": "32", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Not affected", + "On-line CPU(s) list:": "0,5-64,69-127", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "1-4,65-68", + "Vulnerability Meltdown:": "Not affected", + "Vulnerability Retbleed:": "Not affected", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; Enhanced IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS SW sequence", + "Vulnerability Itlb multihit:": "Not affected", + "Vulnerability Mmio stale data:": "Not affected", + "Vulnerability Tsx async abort:": "Not affected", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": null, + "num_constraints": null, + "num_outputs": null, + "num_private_inputs": null, + "num_public_inputs": null, + "num_wires": null, + "trusted_setup_file": "", + "witness_compiler": "c++" + }, + "rawHeaders": [ + "Content-Length", + "3642", + "Content-Type", + "application/json; charset=utf-8", + "Date", + "Mon, 15 Jan 2024 13:31:29 GMT", + "Referrer-Policy", + "same-origin", + "Server", + "gunicorn", + "Vary", + "Cookie, origin", + "X-Content-Type-Options", + "nosniff", + "X-Frame-Options", + "SAMEORIGIN" + ], + "responseIsBinary": false + }, + { + "scope": "https://sindri.app:443", + "method": "GET", + "path": "/api/v1/circuit/cd090915-c649-4d03-a97b-e962996ddd20/detail?include_verification_key=false", + "body": "", + "status": 200, + "response": { + "circuit_id": "cd090915-c649-4d03-a97b-e962996ddd20", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-15T13:31:27.776Z", + "proving_scheme": "groth16", + "status": "In Progress", + "compute_time": null, + "compute_times": { + "total": 0.0006193341687321663, + "queued": 1.176057 + }, + "file_sizes": { + "total": 497, + "total_gb": 4.97e-7, + "total_mb": 0.000497, + "code.tar.gz": 497 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", + "Model:": "85", + "CPU(s):": "32", + "BogoMIPS:": "6400.00", + "L2 cache:": "16 MiB (16 instances)", + "L3 cache:": "49.5 MiB (2 instances)", + "Stepping:": "4", + "L1d cache:": "512 KiB (16 instances)", + "L1i cache:": "512 KiB (16 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Gold 6134 CPU @ 3.20GHz", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "46 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30", + "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31", + "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Core(s) per socket:": "8", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", + "On-line CPU(s) list:": "0-31", + "Vulnerability Srbds:": "Not affected", + "Vulnerability Meltdown:": "Mitigation; PTI", + "Vulnerability Retbleed:": "Mitigation; IBRS", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, STIBP conditional, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", + "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": null, + "num_constraints": null, + "num_outputs": null, + "num_private_inputs": null, + "num_public_inputs": null, + "num_wires": null, + "trusted_setup_file": "", + "witness_compiler": "c++" + }, + "rawHeaders": [ + "Content-Length", + "3417", + "Content-Type", + "application/json; charset=utf-8", + "Date", + "Mon, 15 Jan 2024 13:31:29 GMT", + "Referrer-Policy", + "same-origin", + "Server", + "gunicorn", + "Vary", + "Cookie, origin", + "X-Content-Type-Options", + "nosniff", + "X-Frame-Options", + "SAMEORIGIN" + ], + "responseIsBinary": false + }, + { + "scope": "https://sindri.app:443", + "method": "GET", + "path": "/api/v1/circuit/16cc9ce9-c462-4544-889b-b92a8aa2a163/detail?include_verification_key=false", + "body": "", + "status": 200, + "response": { + "circuit_id": "16cc9ce9-c462-4544-889b-b92a8aa2a163", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-15T13:31:28.205Z", + "proving_scheme": "groth16", + "status": "Queued", + "compute_time": null, + "compute_times": null, + "file_sizes": { + "total": 497, + "total_gb": 4.97e-7, + "total_mb": 0.000497, + "code.tar.gz": 497 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "worker_hardware": null, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": null, + "num_constraints": null, + "num_outputs": null, + "num_private_inputs": null, + "num_public_inputs": null, + "num_wires": null, + "trusted_setup_file": "", + "witness_compiler": "c++" + }, + "rawHeaders": [ + "Content-Length", + "750", + "Content-Type", + "application/json; charset=utf-8", + "Date", + "Mon, 15 Jan 2024 13:31:29 GMT", + "Referrer-Policy", + "same-origin", + "Server", + "gunicorn", + "Vary", + "Cookie, origin", + "X-Content-Type-Options", + "nosniff", + "X-Frame-Options", + "SAMEORIGIN" + ], + "responseIsBinary": false + }, + { + "scope": "https://sindri.app:443", + "method": "GET", + "path": "/api/v1/circuit/36e99794-bf82-45ba-84e2-473801d04601/detail?include_verification_key=false", + "body": "", + "status": 200, + "response": { + "circuit_id": "36e99794-bf82-45ba-84e2-473801d04601", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-15T13:31:27.344Z", + "proving_scheme": "groth16", + "status": "In Progress", + "compute_time": null, + "compute_times": { + "total": 0.00027553096879273653, + "queued": 0.972193 + }, + "file_sizes": { + "total": 497, + "total_gb": 4.97e-7, + "total_mb": 0.000497, + "code.tar.gz": 497 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf tsc_known_freq pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cat_l2 cdp_l3 invpcid_single intel_ppin cdp_l2 ssbd mba ibrs ibpb stibp ibrs_enhanced tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 avx2 smep bmi2 erms invpcid cqm rdt_a avx512f avx512dq rdseed adx smap avx512ifma clflushopt clwb intel_pt avx512cd sha_ni avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local split_lock_detect avx_vnni avx512_bf16 wbnoinvd dtherm ida arat pln pts hwp hwp_act_window hwp_epp hwp_pkg_req hfi avx512vbmi umip pku ospke waitpkg avx512_vbmi2 gfni vaes vpclmulqdq avx512_vnni avx512_bitalg tme avx512_vpopcntdq la57 rdpid bus_lock_detect cldemote movdiri movdir64b enqcmd fsrm md_clear serialize tsxldtrk pconfig arch_lbr ibt amx_bf16 avx512_fp16 amx_tile amx_int8 flush_l1d arch_capabilities", + "Model:": "143", + "CPU(s):": "128", + "BogoMIPS:": "5600.00", + "L2 cache:": "128 MiB (64 instances)", + "L3 cache:": "120 MiB (2 instances)", + "Stepping:": "7", + "L1d cache:": "3 MiB (64 instances)", + "L1i cache:": "2 MiB (64 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8462Y+", + "CPU max MHz:": "4100.0000", + "CPU min MHz:": "800.0000", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "52 bits physical, 57 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0-31,64-95", + "NUMA node1 CPU(s):": "32-63,96-127", + "Vulnerability Mds:": "Not affected", + "Core(s) per socket:": "32", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Not affected", + "On-line CPU(s) list:": "0,5-64,69-127", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "1-4,65-68", + "Vulnerability Meltdown:": "Not affected", + "Vulnerability Retbleed:": "Not affected", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; Enhanced IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS SW sequence", + "Vulnerability Itlb multihit:": "Not affected", + "Vulnerability Mmio stale data:": "Not affected", + "Vulnerability Tsx async abort:": "Not affected", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": null, + "num_constraints": null, + "num_outputs": null, + "num_private_inputs": null, + "num_public_inputs": null, + "num_wires": null, + "trusted_setup_file": "", + "witness_compiler": "c++" + }, + "rawHeaders": [ + "Content-Length", + "3643", + "Content-Type", + "application/json; charset=utf-8", + "Date", + "Mon, 15 Jan 2024 13:31:30 GMT", + "Referrer-Policy", + "same-origin", + "Server", + "gunicorn", + "Vary", + "Cookie, origin", + "X-Content-Type-Options", + "nosniff", + "X-Frame-Options", + "SAMEORIGIN" + ], + "responseIsBinary": false + }, + { + "scope": "https://sindri.app:443", + "method": "GET", + "path": "/api/v1/circuit/d2b35982-db22-46ed-8398-633a67326497/detail?include_verification_key=false", + "body": "", + "status": 200, + "response": { + "circuit_id": "d2b35982-db22-46ed-8398-633a67326497", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-15T13:31:27.371Z", + "proving_scheme": "groth16", + "status": "In Progress", + "compute_time": null, + "compute_times": { + "total": 0.0002155390102416277, + "queued": 1.002764 + }, + "file_sizes": { + "total": 497, + "total_gb": 4.97e-7, + "total_mb": 0.000497, + "code.tar.gz": 497 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf tsc_known_freq pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cat_l2 cdp_l3 invpcid_single intel_ppin cdp_l2 ssbd mba ibrs ibpb stibp ibrs_enhanced tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 avx2 smep bmi2 erms invpcid cqm rdt_a avx512f avx512dq rdseed adx smap avx512ifma clflushopt clwb intel_pt avx512cd sha_ni avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local split_lock_detect avx_vnni avx512_bf16 wbnoinvd dtherm ida arat pln pts hwp hwp_act_window hwp_epp hwp_pkg_req hfi avx512vbmi umip pku ospke waitpkg avx512_vbmi2 gfni vaes vpclmulqdq avx512_vnni avx512_bitalg tme avx512_vpopcntdq la57 rdpid bus_lock_detect cldemote movdiri movdir64b enqcmd fsrm md_clear serialize tsxldtrk pconfig arch_lbr ibt amx_bf16 avx512_fp16 amx_tile amx_int8 flush_l1d arch_capabilities", + "Model:": "143", + "CPU(s):": "128", + "BogoMIPS:": "5600.00", + "L2 cache:": "128 MiB (64 instances)", + "L3 cache:": "120 MiB (2 instances)", + "Stepping:": "7", + "L1d cache:": "3 MiB (64 instances)", + "L1i cache:": "2 MiB (64 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8462Y+", + "CPU max MHz:": "4100.0000", + "CPU min MHz:": "800.0000", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "52 bits physical, 57 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0-31,64-95", + "NUMA node1 CPU(s):": "32-63,96-127", + "Vulnerability Mds:": "Not affected", + "Core(s) per socket:": "32", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Not affected", + "On-line CPU(s) list:": "0,5-64,69-127", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "1-4,65-68", + "Vulnerability Meltdown:": "Not affected", + "Vulnerability Retbleed:": "Not affected", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; Enhanced IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS SW sequence", + "Vulnerability Itlb multihit:": "Not affected", + "Vulnerability Mmio stale data:": "Not affected", + "Vulnerability Tsx async abort:": "Not affected", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": null, + "num_constraints": null, + "num_outputs": null, + "num_private_inputs": null, + "num_public_inputs": null, + "num_wires": null, + "trusted_setup_file": "", + "witness_compiler": "c++" + }, + "rawHeaders": [ + "Content-Length", + "3642", + "Content-Type", + "application/json; charset=utf-8", + "Date", + "Mon, 15 Jan 2024 13:31:30 GMT", + "Referrer-Policy", + "same-origin", + "Server", + "gunicorn", + "Vary", + "Cookie, origin", + "X-Content-Type-Options", + "nosniff", + "X-Frame-Options", + "SAMEORIGIN" + ], + "responseIsBinary": false + }, + { + "scope": "https://sindri.app:443", + "method": "GET", + "path": "/api/v1/circuit/cd090915-c649-4d03-a97b-e962996ddd20/detail?include_verification_key=false", + "body": "", + "status": 200, + "response": { + "circuit_id": "cd090915-c649-4d03-a97b-e962996ddd20", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-15T13:31:27.776Z", + "proving_scheme": "groth16", + "status": "In Progress", + "compute_time": null, + "compute_times": { + "total": 0.0006193341687321663, + "queued": 1.176057 + }, + "file_sizes": { + "total": 497, + "total_gb": 4.97e-7, + "total_mb": 0.000497, + "code.tar.gz": 497 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", + "Model:": "85", + "CPU(s):": "32", + "BogoMIPS:": "6400.00", + "L2 cache:": "16 MiB (16 instances)", + "L3 cache:": "49.5 MiB (2 instances)", + "Stepping:": "4", + "L1d cache:": "512 KiB (16 instances)", + "L1i cache:": "512 KiB (16 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Gold 6134 CPU @ 3.20GHz", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "46 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30", + "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31", + "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Core(s) per socket:": "8", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", + "On-line CPU(s) list:": "0-31", + "Vulnerability Srbds:": "Not affected", + "Vulnerability Meltdown:": "Mitigation; PTI", + "Vulnerability Retbleed:": "Mitigation; IBRS", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, STIBP conditional, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", + "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": null, + "num_constraints": null, + "num_outputs": null, + "num_private_inputs": null, + "num_public_inputs": null, + "num_wires": null, + "trusted_setup_file": "", + "witness_compiler": "c++" + }, + "rawHeaders": [ + "Content-Length", + "3417", + "Content-Type", + "application/json; charset=utf-8", + "Date", + "Mon, 15 Jan 2024 13:31:30 GMT", + "Referrer-Policy", + "same-origin", + "Server", + "gunicorn", + "Vary", + "Cookie, origin", + "X-Content-Type-Options", + "nosniff", + "X-Frame-Options", + "SAMEORIGIN" + ], + "responseIsBinary": false + }, + { + "scope": "https://sindri.app:443", + "method": "GET", + "path": "/api/v1/circuit/16cc9ce9-c462-4544-889b-b92a8aa2a163/detail?include_verification_key=false", + "body": "", + "status": 200, + "response": { + "circuit_id": "16cc9ce9-c462-4544-889b-b92a8aa2a163", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-15T13:31:28.205Z", + "proving_scheme": "groth16", + "status": "Queued", + "compute_time": null, + "compute_times": null, + "file_sizes": { + "total": 497, + "total_gb": 4.97e-7, + "total_mb": 0.000497, + "code.tar.gz": 497 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "worker_hardware": null, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": null, + "num_constraints": null, + "num_outputs": null, + "num_private_inputs": null, + "num_public_inputs": null, + "num_wires": null, + "trusted_setup_file": "", + "witness_compiler": "c++" + }, + "rawHeaders": [ + "Content-Length", + "750", + "Content-Type", + "application/json; charset=utf-8", + "Date", + "Mon, 15 Jan 2024 13:31:30 GMT", + "Referrer-Policy", + "same-origin", + "Server", + "gunicorn", + "Vary", + "Cookie, origin", + "X-Content-Type-Options", + "nosniff", + "X-Frame-Options", + "SAMEORIGIN" + ], + "responseIsBinary": false + }, + { + "scope": "https://sindri.app:443", + "method": "GET", + "path": "/api/v1/circuit/36e99794-bf82-45ba-84e2-473801d04601/detail?include_verification_key=false", + "body": "", + "status": 200, + "response": { + "circuit_id": "36e99794-bf82-45ba-84e2-473801d04601", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-15T13:31:27.344Z", + "proving_scheme": "groth16", + "status": "In Progress", + "compute_time": null, + "compute_times": { + "total": 0.00027553096879273653, + "queued": 0.972193 + }, + "file_sizes": { + "total": 497, + "total_gb": 4.97e-7, + "total_mb": 0.000497, + "code.tar.gz": 497 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf tsc_known_freq pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cat_l2 cdp_l3 invpcid_single intel_ppin cdp_l2 ssbd mba ibrs ibpb stibp ibrs_enhanced tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 avx2 smep bmi2 erms invpcid cqm rdt_a avx512f avx512dq rdseed adx smap avx512ifma clflushopt clwb intel_pt avx512cd sha_ni avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local split_lock_detect avx_vnni avx512_bf16 wbnoinvd dtherm ida arat pln pts hwp hwp_act_window hwp_epp hwp_pkg_req hfi avx512vbmi umip pku ospke waitpkg avx512_vbmi2 gfni vaes vpclmulqdq avx512_vnni avx512_bitalg tme avx512_vpopcntdq la57 rdpid bus_lock_detect cldemote movdiri movdir64b enqcmd fsrm md_clear serialize tsxldtrk pconfig arch_lbr ibt amx_bf16 avx512_fp16 amx_tile amx_int8 flush_l1d arch_capabilities", + "Model:": "143", + "CPU(s):": "128", + "BogoMIPS:": "5600.00", + "L2 cache:": "128 MiB (64 instances)", + "L3 cache:": "120 MiB (2 instances)", + "Stepping:": "7", + "L1d cache:": "3 MiB (64 instances)", + "L1i cache:": "2 MiB (64 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8462Y+", + "CPU max MHz:": "4100.0000", + "CPU min MHz:": "800.0000", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "52 bits physical, 57 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0-31,64-95", + "NUMA node1 CPU(s):": "32-63,96-127", + "Vulnerability Mds:": "Not affected", + "Core(s) per socket:": "32", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Not affected", + "On-line CPU(s) list:": "0,5-64,69-127", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "1-4,65-68", + "Vulnerability Meltdown:": "Not affected", + "Vulnerability Retbleed:": "Not affected", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; Enhanced IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS SW sequence", + "Vulnerability Itlb multihit:": "Not affected", + "Vulnerability Mmio stale data:": "Not affected", + "Vulnerability Tsx async abort:": "Not affected", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": null, + "num_constraints": null, + "num_outputs": null, + "num_private_inputs": null, + "num_public_inputs": null, + "num_wires": null, + "trusted_setup_file": "", + "witness_compiler": "c++" + }, + "rawHeaders": [ + "Content-Length", + "3643", + "Content-Type", + "application/json; charset=utf-8", + "Date", + "Mon, 15 Jan 2024 13:31:32 GMT", + "Referrer-Policy", + "same-origin", + "Server", + "gunicorn", + "Vary", + "Cookie, origin", + "X-Content-Type-Options", + "nosniff", + "X-Frame-Options", + "SAMEORIGIN" + ], + "responseIsBinary": false + }, + { + "scope": "https://sindri.app:443", + "method": "GET", + "path": "/api/v1/circuit/d2b35982-db22-46ed-8398-633a67326497/detail?include_verification_key=false", + "body": "", + "status": 200, + "response": { + "circuit_id": "d2b35982-db22-46ed-8398-633a67326497", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-15T13:31:27.371Z", + "proving_scheme": "groth16", + "status": "In Progress", + "compute_time": null, + "compute_times": { + "total": 0.0002155390102416277, + "queued": 1.002764 + }, + "file_sizes": { + "total": 497, + "total_gb": 4.97e-7, + "total_mb": 0.000497, + "code.tar.gz": 497 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf tsc_known_freq pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cat_l2 cdp_l3 invpcid_single intel_ppin cdp_l2 ssbd mba ibrs ibpb stibp ibrs_enhanced tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 avx2 smep bmi2 erms invpcid cqm rdt_a avx512f avx512dq rdseed adx smap avx512ifma clflushopt clwb intel_pt avx512cd sha_ni avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local split_lock_detect avx_vnni avx512_bf16 wbnoinvd dtherm ida arat pln pts hwp hwp_act_window hwp_epp hwp_pkg_req hfi avx512vbmi umip pku ospke waitpkg avx512_vbmi2 gfni vaes vpclmulqdq avx512_vnni avx512_bitalg tme avx512_vpopcntdq la57 rdpid bus_lock_detect cldemote movdiri movdir64b enqcmd fsrm md_clear serialize tsxldtrk pconfig arch_lbr ibt amx_bf16 avx512_fp16 amx_tile amx_int8 flush_l1d arch_capabilities", + "Model:": "143", + "CPU(s):": "128", + "BogoMIPS:": "5600.00", + "L2 cache:": "128 MiB (64 instances)", + "L3 cache:": "120 MiB (2 instances)", + "Stepping:": "7", + "L1d cache:": "3 MiB (64 instances)", + "L1i cache:": "2 MiB (64 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8462Y+", + "CPU max MHz:": "4100.0000", + "CPU min MHz:": "800.0000", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "52 bits physical, 57 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0-31,64-95", + "NUMA node1 CPU(s):": "32-63,96-127", + "Vulnerability Mds:": "Not affected", + "Core(s) per socket:": "32", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Not affected", + "On-line CPU(s) list:": "0,5-64,69-127", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "1-4,65-68", + "Vulnerability Meltdown:": "Not affected", + "Vulnerability Retbleed:": "Not affected", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; Enhanced IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS SW sequence", + "Vulnerability Itlb multihit:": "Not affected", + "Vulnerability Mmio stale data:": "Not affected", + "Vulnerability Tsx async abort:": "Not affected", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": null, + "num_constraints": null, + "num_outputs": null, + "num_private_inputs": null, + "num_public_inputs": null, + "num_wires": null, + "trusted_setup_file": "", + "witness_compiler": "c++" + }, + "rawHeaders": [ + "Content-Length", + "3642", + "Content-Type", + "application/json; charset=utf-8", + "Date", + "Mon, 15 Jan 2024 13:31:32 GMT", + "Referrer-Policy", + "same-origin", + "Server", + "gunicorn", + "Vary", + "Cookie, origin", + "X-Content-Type-Options", + "nosniff", + "X-Frame-Options", + "SAMEORIGIN" + ], + "responseIsBinary": false + }, + { + "scope": "https://sindri.app:443", + "method": "GET", + "path": "/api/v1/circuit/cd090915-c649-4d03-a97b-e962996ddd20/detail?include_verification_key=false", + "body": "", + "status": 200, + "response": { + "circuit_id": "cd090915-c649-4d03-a97b-e962996ddd20", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-15T13:31:27.776Z", + "proving_scheme": "groth16", + "status": "In Progress", + "compute_time": null, + "compute_times": { + "total": 0.0006193341687321663, + "queued": 1.176057 + }, + "file_sizes": { + "total": 497, + "total_gb": 4.97e-7, + "total_mb": 0.000497, + "code.tar.gz": 497 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", + "Model:": "85", + "CPU(s):": "32", + "BogoMIPS:": "6400.00", + "L2 cache:": "16 MiB (16 instances)", + "L3 cache:": "49.5 MiB (2 instances)", + "Stepping:": "4", + "L1d cache:": "512 KiB (16 instances)", + "L1i cache:": "512 KiB (16 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Gold 6134 CPU @ 3.20GHz", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "46 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30", + "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31", + "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Core(s) per socket:": "8", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", + "On-line CPU(s) list:": "0-31", + "Vulnerability Srbds:": "Not affected", + "Vulnerability Meltdown:": "Mitigation; PTI", + "Vulnerability Retbleed:": "Mitigation; IBRS", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, STIBP conditional, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", + "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": null, + "num_constraints": null, + "num_outputs": null, + "num_private_inputs": null, + "num_public_inputs": null, + "num_wires": null, + "trusted_setup_file": "", + "witness_compiler": "c++" + }, + "rawHeaders": [ + "Content-Length", + "3417", + "Content-Type", + "application/json; charset=utf-8", + "Date", + "Mon, 15 Jan 2024 13:31:32 GMT", + "Referrer-Policy", + "same-origin", + "Server", + "gunicorn", + "Vary", + "Cookie, origin", + "X-Content-Type-Options", + "nosniff", + "X-Frame-Options", + "SAMEORIGIN" + ], + "responseIsBinary": false + }, + { + "scope": "https://sindri.app:443", + "method": "GET", + "path": "/api/v1/circuit/16cc9ce9-c462-4544-889b-b92a8aa2a163/detail?include_verification_key=false", + "body": "", + "status": 200, + "response": { + "circuit_id": "16cc9ce9-c462-4544-889b-b92a8aa2a163", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-15T13:31:28.205Z", + "proving_scheme": "groth16", + "status": "Queued", + "compute_time": null, + "compute_times": null, + "file_sizes": { + "total": 497, + "total_gb": 4.97e-7, + "total_mb": 0.000497, + "code.tar.gz": 497 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "worker_hardware": null, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": null, + "num_constraints": null, + "num_outputs": null, + "num_private_inputs": null, + "num_public_inputs": null, + "num_wires": null, + "trusted_setup_file": "", + "witness_compiler": "c++" + }, + "rawHeaders": [ + "Content-Length", + "750", + "Content-Type", + "application/json; charset=utf-8", + "Date", + "Mon, 15 Jan 2024 13:31:32 GMT", + "Referrer-Policy", + "same-origin", + "Server", + "gunicorn", + "Vary", + "Cookie, origin", + "X-Content-Type-Options", + "nosniff", + "X-Frame-Options", + "SAMEORIGIN" + ], + "responseIsBinary": false + }, + { + "scope": "https://sindri.app:443", + "method": "GET", + "path": "/api/v1/circuit/d2b35982-db22-46ed-8398-633a67326497/detail?include_verification_key=false", + "body": "", + "status": 200, + "response": { + "circuit_id": "d2b35982-db22-46ed-8398-633a67326497", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-15T13:31:27.371Z", + "proving_scheme": "groth16", + "status": "In Progress", + "compute_time": null, + "compute_times": { + "total": 0.0002155390102416277, + "queued": 1.002764 + }, + "file_sizes": { + "total": 497, + "total_gb": 4.97e-7, + "total_mb": 0.000497, + "code.tar.gz": 497 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf tsc_known_freq pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cat_l2 cdp_l3 invpcid_single intel_ppin cdp_l2 ssbd mba ibrs ibpb stibp ibrs_enhanced tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 avx2 smep bmi2 erms invpcid cqm rdt_a avx512f avx512dq rdseed adx smap avx512ifma clflushopt clwb intel_pt avx512cd sha_ni avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local split_lock_detect avx_vnni avx512_bf16 wbnoinvd dtherm ida arat pln pts hwp hwp_act_window hwp_epp hwp_pkg_req hfi avx512vbmi umip pku ospke waitpkg avx512_vbmi2 gfni vaes vpclmulqdq avx512_vnni avx512_bitalg tme avx512_vpopcntdq la57 rdpid bus_lock_detect cldemote movdiri movdir64b enqcmd fsrm md_clear serialize tsxldtrk pconfig arch_lbr ibt amx_bf16 avx512_fp16 amx_tile amx_int8 flush_l1d arch_capabilities", + "Model:": "143", + "CPU(s):": "128", + "BogoMIPS:": "5600.00", + "L2 cache:": "128 MiB (64 instances)", + "L3 cache:": "120 MiB (2 instances)", + "Stepping:": "7", + "L1d cache:": "3 MiB (64 instances)", + "L1i cache:": "2 MiB (64 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8462Y+", + "CPU max MHz:": "4100.0000", + "CPU min MHz:": "800.0000", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "52 bits physical, 57 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0-31,64-95", + "NUMA node1 CPU(s):": "32-63,96-127", + "Vulnerability Mds:": "Not affected", + "Core(s) per socket:": "32", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Not affected", + "On-line CPU(s) list:": "0,5-64,69-127", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "1-4,65-68", + "Vulnerability Meltdown:": "Not affected", + "Vulnerability Retbleed:": "Not affected", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; Enhanced IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS SW sequence", + "Vulnerability Itlb multihit:": "Not affected", + "Vulnerability Mmio stale data:": "Not affected", + "Vulnerability Tsx async abort:": "Not affected", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": null, + "num_constraints": null, + "num_outputs": null, + "num_private_inputs": null, + "num_public_inputs": null, + "num_wires": null, + "trusted_setup_file": "", + "witness_compiler": "c++" + }, + "rawHeaders": [ + "Content-Length", + "3642", + "Content-Type", + "application/json; charset=utf-8", + "Date", + "Mon, 15 Jan 2024 13:31:33 GMT", + "Referrer-Policy", + "same-origin", + "Server", + "gunicorn", + "Vary", + "Cookie, origin", + "X-Content-Type-Options", + "nosniff", + "X-Frame-Options", + "SAMEORIGIN" + ], + "responseIsBinary": false + }, + { + "scope": "https://sindri.app:443", + "method": "GET", + "path": "/api/v1/circuit/36e99794-bf82-45ba-84e2-473801d04601/detail?include_verification_key=false", + "body": "", + "status": 200, + "response": { + "circuit_id": "36e99794-bf82-45ba-84e2-473801d04601", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-15T13:31:27.344Z", + "proving_scheme": "groth16", + "status": "Ready", + "compute_time": "P0DT00H00M04.938049S", + "compute_times": { + "total": 4.9735322810010985, + "queued": 0.972193, + "clean_up": 0.0004673229996114969, + "create_cpp": 0.029697786085307598, + "file_setup": 0.18970869795884937, + "compile_cpp": 3.0105657579842955, + "create_r1cs": 0.005213497905060649, + "save_results": 0.0022177600767463446, + "get_r1cs_info": 0.0002456710208207369, + "groth16_setup": 0.884783201967366, + "export_verification_key": 0.8496285049477592, + "download_trusted_setup_file": 0.0007285490864887834 + }, + "file_sizes": { + "total": 225418, + "circuit": 213240, + "total_gb": 0.000225418, + "total_mb": 0.225418, + "circuit.dat": 6176, + "code.tar.gz": 497, + "circuit.zkey": 2580, + "verification_key": 2925 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf tsc_known_freq pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cat_l2 cdp_l3 invpcid_single intel_ppin cdp_l2 ssbd mba ibrs ibpb stibp ibrs_enhanced tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 avx2 smep bmi2 erms invpcid cqm rdt_a avx512f avx512dq rdseed adx smap avx512ifma clflushopt clwb intel_pt avx512cd sha_ni avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local split_lock_detect avx_vnni avx512_bf16 wbnoinvd dtherm ida arat pln pts hwp hwp_act_window hwp_epp hwp_pkg_req hfi avx512vbmi umip pku ospke waitpkg avx512_vbmi2 gfni vaes vpclmulqdq avx512_vnni avx512_bitalg tme avx512_vpopcntdq la57 rdpid bus_lock_detect cldemote movdiri movdir64b enqcmd fsrm md_clear serialize tsxldtrk pconfig arch_lbr ibt amx_bf16 avx512_fp16 amx_tile amx_int8 flush_l1d arch_capabilities", + "Model:": "143", + "CPU(s):": "128", + "BogoMIPS:": "5600.00", + "L2 cache:": "128 MiB (64 instances)", + "L3 cache:": "120 MiB (2 instances)", + "Stepping:": "7", + "L1d cache:": "3 MiB (64 instances)", + "L1i cache:": "2 MiB (64 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8462Y+", + "CPU max MHz:": "4100.0000", + "CPU min MHz:": "800.0000", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "52 bits physical, 57 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0-31,64-95", + "NUMA node1 CPU(s):": "32-63,96-127", + "Vulnerability Mds:": "Not affected", + "Core(s) per socket:": "32", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Not affected", + "On-line CPU(s) list:": "0,5-64,69-127", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "1-4,65-68", + "Vulnerability Meltdown:": "Not affected", + "Vulnerability Retbleed:": "Not affected", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; Enhanced IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS SW sequence", + "Vulnerability Itlb multihit:": "Not affected", + "Vulnerability Mmio stale data:": "Not affected", + "Vulnerability Tsx async abort:": "Not affected", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": 0, + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0, + "num_wires": 4, + "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", + "witness_compiler": "c++" + }, + "rawHeaders": [ + "Content-Length", + "4152", + "Content-Type", + "application/json; charset=utf-8", + "Date", + "Mon, 15 Jan 2024 13:31:33 GMT", + "Referrer-Policy", + "same-origin", + "Server", + "gunicorn", + "Vary", + "Cookie, origin", + "X-Content-Type-Options", + "nosniff", + "X-Frame-Options", + "SAMEORIGIN" + ], + "responseIsBinary": false + }, + { + "scope": "https://sindri.app:443", + "method": "GET", + "path": "/api/v1/circuit/cd090915-c649-4d03-a97b-e962996ddd20/detail?include_verification_key=false", + "body": "", + "status": 200, + "response": { + "circuit_id": "cd090915-c649-4d03-a97b-e962996ddd20", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-15T13:31:27.776Z", + "proving_scheme": "groth16", + "status": "In Progress", + "compute_time": null, + "compute_times": { + "total": 0.0006193341687321663, + "queued": 1.176057 + }, + "file_sizes": { + "total": 497, + "total_gb": 4.97e-7, + "total_mb": 0.000497, + "code.tar.gz": 497 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", + "Model:": "85", + "CPU(s):": "32", + "BogoMIPS:": "6400.00", + "L2 cache:": "16 MiB (16 instances)", + "L3 cache:": "49.5 MiB (2 instances)", + "Stepping:": "4", + "L1d cache:": "512 KiB (16 instances)", + "L1i cache:": "512 KiB (16 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Gold 6134 CPU @ 3.20GHz", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "46 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30", + "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31", + "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Core(s) per socket:": "8", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", + "On-line CPU(s) list:": "0-31", + "Vulnerability Srbds:": "Not affected", + "Vulnerability Meltdown:": "Mitigation; PTI", + "Vulnerability Retbleed:": "Mitigation; IBRS", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, STIBP conditional, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", + "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": null, + "num_constraints": null, + "num_outputs": null, + "num_private_inputs": null, + "num_public_inputs": null, + "num_wires": null, + "trusted_setup_file": "", + "witness_compiler": "c++" + }, + "rawHeaders": [ + "Content-Length", + "3417", + "Content-Type", + "application/json; charset=utf-8", + "Date", + "Mon, 15 Jan 2024 13:31:33 GMT", + "Referrer-Policy", + "same-origin", + "Server", + "gunicorn", + "Vary", + "Cookie, origin", + "X-Content-Type-Options", + "nosniff", + "X-Frame-Options", + "SAMEORIGIN" + ], + "responseIsBinary": false + }, + { + "scope": "https://sindri.app:443", + "method": "GET", + "path": "/api/v1/circuit/16cc9ce9-c462-4544-889b-b92a8aa2a163/detail?include_verification_key=false", + "body": "", + "status": 200, + "response": { + "circuit_id": "16cc9ce9-c462-4544-889b-b92a8aa2a163", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-15T13:31:28.205Z", + "proving_scheme": "groth16", + "status": "In Progress", + "compute_time": null, + "compute_times": { + "total": 0.0002499771071597934, + "queued": 5.016909 + }, + "file_sizes": { + "total": 497, + "total_gb": 4.97e-7, + "total_mb": 0.000497, + "code.tar.gz": 497 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf tsc_known_freq pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cat_l2 cdp_l3 invpcid_single intel_ppin cdp_l2 ssbd mba ibrs ibpb stibp ibrs_enhanced tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 avx2 smep bmi2 erms invpcid cqm rdt_a avx512f avx512dq rdseed adx smap avx512ifma clflushopt clwb intel_pt avx512cd sha_ni avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local split_lock_detect avx_vnni avx512_bf16 wbnoinvd dtherm ida arat pln pts hwp hwp_act_window hwp_epp hwp_pkg_req hfi avx512vbmi umip pku ospke waitpkg avx512_vbmi2 gfni vaes vpclmulqdq avx512_vnni avx512_bitalg tme avx512_vpopcntdq la57 rdpid bus_lock_detect cldemote movdiri movdir64b enqcmd fsrm md_clear serialize tsxldtrk pconfig arch_lbr ibt amx_bf16 avx512_fp16 amx_tile amx_int8 flush_l1d arch_capabilities", + "Model:": "143", + "CPU(s):": "128", + "BogoMIPS:": "5600.00", + "L2 cache:": "128 MiB (64 instances)", + "L3 cache:": "120 MiB (2 instances)", + "Stepping:": "7", + "L1d cache:": "3 MiB (64 instances)", + "L1i cache:": "2 MiB (64 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8462Y+", + "CPU max MHz:": "4100.0000", + "CPU min MHz:": "800.0000", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "52 bits physical, 57 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0-31,64-95", + "NUMA node1 CPU(s):": "32-63,96-127", + "Vulnerability Mds:": "Not affected", + "Core(s) per socket:": "32", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Not affected", + "On-line CPU(s) list:": "0,5-64,69-127", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "1-4,65-68", + "Vulnerability Meltdown:": "Not affected", + "Vulnerability Retbleed:": "Not affected", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; Enhanced IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS SW sequence", + "Vulnerability Itlb multihit:": "Not affected", + "Vulnerability Mmio stale data:": "Not affected", + "Vulnerability Tsx async abort:": "Not affected", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": null, + "num_constraints": null, + "num_outputs": null, + "num_private_inputs": null, + "num_public_inputs": null, + "num_wires": null, + "trusted_setup_file": "", + "witness_compiler": "c++" + }, + "rawHeaders": [ + "Content-Length", + "3642", + "Content-Type", + "application/json; charset=utf-8", + "Date", + "Mon, 15 Jan 2024 13:31:33 GMT", + "Referrer-Policy", + "same-origin", + "Server", + "gunicorn", + "Vary", + "Cookie, origin", + "X-Content-Type-Options", + "nosniff", + "X-Frame-Options", + "SAMEORIGIN" + ], + "responseIsBinary": false + }, + { + "scope": "https://sindri.app:443", + "method": "POST", + "path": "/api/v1/circuit/36e99794-bf82-45ba-84e2-473801d04601/prove", + "body": "------WebKitFormBoundaryAtzSwEtmdy13Jgc4\r\nContent-Disposition: form-data; name=\"proof_input\"\r\n\r\n{\"a\":\"5\",\"b\":\"4\"}\r\n------WebKitFormBoundaryAtzSwEtmdy13Jgc4--\r\n", + "status": 201, + "response": { + "proof_id": "81720f66-b35d-4928-9cb3-0ab9822e35c6", + "circuit_name": "circom-multiplier2", + "circuit_id": "36e99794-bf82-45ba-84e2-473801d04601", + "circuit_type": "circom", + "date_created": "2024-01-15T13:31:34.090Z", + "perform_verify": false, + "status": "Queued", + "compute_time": null, + "compute_times": null, + "file_sizes": null, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "proof_input": null, + "proof": null, + "prover_implementation": {}, + "public": null, + "worker_hardware": null, + "verification_key": null, + "error": null + }, + "rawHeaders": [ + "Content-Length", + "547", + "Content-Type", + "application/json; charset=utf-8", + "Date", + "Mon, 15 Jan 2024 13:31:34 GMT", + "Referrer-Policy", + "same-origin", + "Server", + "gunicorn", + "Vary", + "Cookie, origin", + "X-Content-Type-Options", + "nosniff", + "X-Frame-Options", + "SAMEORIGIN" + ], + "responseIsBinary": false + }, + { + "scope": "https://sindri.app:443", + "method": "GET", + "path": "/api/v1/circuit/36e99794-bf82-45ba-84e2-473801d04601/proofs?include_proof_input=false&include_proof=false&include_public=false&include_verification_key=false", + "body": "", + "status": 200, + "response": [ + { + "proof_id": "81720f66-b35d-4928-9cb3-0ab9822e35c6", + "circuit_name": "circom-multiplier2", + "circuit_id": "36e99794-bf82-45ba-84e2-473801d04601", + "circuit_type": "circom", + "date_created": "2024-01-15T13:31:34.090Z", + "perform_verify": false, + "status": "Queued", + "compute_time": null, + "compute_times": null, + "file_sizes": null, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "proof_input": null, + "proof": null, + "prover_implementation": {}, + "public": null, + "worker_hardware": null, + "verification_key": null, + "error": null + } + ], "rawHeaders": [ - "Access-Control-Allow-Origin", - "*", - "Cache-Control", - "max-age=60, public", + "Content-Length", + "549", "Content-Type", - "text/plain; charset=\"utf-8\"", + "application/json; charset=utf-8", "Date", - "Sun, 07 Jan 2024 04:06:44 GMT", - "Etag", - "\"6596d85d-12f\"", - "Last-Modified", - "Thu, 04 Jan 2024 16:10:05 GMT", + "Mon, 15 Jan 2024 13:31:34 GMT", + "Referrer-Policy", + "same-origin", "Server", "gunicorn", "Vary", - "Accept-Encoding", + "Cookie, origin", + "X-Content-Type-Options", + "nosniff", + "X-Frame-Options", + "SAMEORIGIN" + ], + "responseIsBinary": false + }, + { + "scope": "https://sindri.app:443", + "method": "GET", + "path": "/api/v1/circuit/d2b35982-db22-46ed-8398-633a67326497/detail?include_verification_key=false", + "body": "", + "status": 200, + "response": { + "circuit_id": "d2b35982-db22-46ed-8398-633a67326497", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-15T13:31:27.371Z", + "proving_scheme": "groth16", + "status": "Ready", + "compute_time": "P0DT00H00M05.028025S", + "compute_times": { + "total": 5.060947331017815, + "queued": 1.002764, + "clean_up": 0.0005010430468246341, + "create_cpp": 0.030848323018290102, + "file_setup": 0.3499931499827653, + "compile_cpp": 2.9625711779808626, + "create_r1cs": 0.005965905962511897, + "save_results": 0.0023849039571359754, + "get_r1cs_info": 0.0003329960163682699, + "groth16_setup": 0.8954589819768444, + "export_verification_key": 0.8118982950691134, + "download_trusted_setup_file": 0.000777014996856451 + }, + "file_sizes": { + "total": 225418, + "circuit": 213240, + "total_gb": 0.000225418, + "total_mb": 0.225418, + "circuit.dat": 6176, + "code.tar.gz": 497, + "circuit.zkey": 2580, + "verification_key": 2925 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf tsc_known_freq pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cat_l2 cdp_l3 invpcid_single intel_ppin cdp_l2 ssbd mba ibrs ibpb stibp ibrs_enhanced tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 avx2 smep bmi2 erms invpcid cqm rdt_a avx512f avx512dq rdseed adx smap avx512ifma clflushopt clwb intel_pt avx512cd sha_ni avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local split_lock_detect avx_vnni avx512_bf16 wbnoinvd dtherm ida arat pln pts hwp hwp_act_window hwp_epp hwp_pkg_req hfi avx512vbmi umip pku ospke waitpkg avx512_vbmi2 gfni vaes vpclmulqdq avx512_vnni avx512_bitalg tme avx512_vpopcntdq la57 rdpid bus_lock_detect cldemote movdiri movdir64b enqcmd fsrm md_clear serialize tsxldtrk pconfig arch_lbr ibt amx_bf16 avx512_fp16 amx_tile amx_int8 flush_l1d arch_capabilities", + "Model:": "143", + "CPU(s):": "128", + "BogoMIPS:": "5600.00", + "L2 cache:": "128 MiB (64 instances)", + "L3 cache:": "120 MiB (2 instances)", + "Stepping:": "7", + "L1d cache:": "3 MiB (64 instances)", + "L1i cache:": "2 MiB (64 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8462Y+", + "CPU max MHz:": "4100.0000", + "CPU min MHz:": "800.0000", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "52 bits physical, 57 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0-31,64-95", + "NUMA node1 CPU(s):": "32-63,96-127", + "Vulnerability Mds:": "Not affected", + "Core(s) per socket:": "32", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Not affected", + "On-line CPU(s) list:": "0,5-64,69-127", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "1-4,65-68", + "Vulnerability Meltdown:": "Not affected", + "Vulnerability Retbleed:": "Not affected", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; Enhanced IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS SW sequence", + "Vulnerability Itlb multihit:": "Not affected", + "Vulnerability Mmio stale data:": "Not affected", + "Vulnerability Tsx async abort:": "Not affected", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": 0, + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0, + "num_wires": 4, + "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", + "witness_compiler": "c++" + }, + "rawHeaders": [ "Content-Length", - "303", - "Connection", - "close" + "4150", + "Content-Type", + "application/json; charset=utf-8", + "Date", + "Mon, 15 Jan 2024 13:31:34 GMT", + "Referrer-Policy", + "same-origin", + "Server", + "gunicorn", + "Vary", + "Cookie, origin", + "X-Content-Type-Options", + "nosniff", + "X-Frame-Options", + "SAMEORIGIN" ], "responseIsBinary": false }, { "scope": "https://sindri.app:443", - "method": "get", - "path": "/api/v1/sindri-manifest-schema.json", + "method": "GET", + "path": "/api/v1/circuit/cd090915-c649-4d03-a97b-e962996ddd20/detail?include_verification_key=false", "body": "", "status": 200, "response": { - "$id": "https://sindri.app/api/v1/sindri-manifest-schema.json", - "$schema": "http://json-schema.org/draft-07/schema#", - "title": "SindriManifest", - "description": "Sindri Manifest file schema for `sindri.json` files.", - "anyOf": [ - { - "$ref": "#/definitions/CircomSindriManifest" + "circuit_id": "cd090915-c649-4d03-a97b-e962996ddd20", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-15T13:31:27.776Z", + "proving_scheme": "groth16", + "status": "In Progress", + "compute_time": null, + "compute_times": { + "total": 0.0006193341687321663, + "queued": 1.176057 + }, + "file_sizes": { + "total": 497, + "total_gb": 4.97e-7, + "total_mb": 0.000497, + "code.tar.gz": 497 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", + "Model:": "85", + "CPU(s):": "32", + "BogoMIPS:": "6400.00", + "L2 cache:": "16 MiB (16 instances)", + "L3 cache:": "49.5 MiB (2 instances)", + "Stepping:": "4", + "L1d cache:": "512 KiB (16 instances)", + "L1i cache:": "512 KiB (16 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Gold 6134 CPU @ 3.20GHz", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "46 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30", + "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31", + "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Core(s) per socket:": "8", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", + "On-line CPU(s) list:": "0-31", + "Vulnerability Srbds:": "Not affected", + "Vulnerability Meltdown:": "Mitigation; PTI", + "Vulnerability Retbleed:": "Mitigation; IBRS", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, STIBP conditional, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", + "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" }, - { - "$ref": "#/definitions/GnarkSindriManifest" + "GPU": { + "gpus": [], + "num_gpus": 0 }, - { - "$ref": "#/definitions/Halo2AxiomV022SindriManifest" + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": null, + "num_constraints": null, + "num_outputs": null, + "num_private_inputs": null, + "num_public_inputs": null, + "num_wires": null, + "trusted_setup_file": "", + "witness_compiler": "c++" + }, + "rawHeaders": [ + "Content-Length", + "3417", + "Content-Type", + "application/json; charset=utf-8", + "Date", + "Mon, 15 Jan 2024 13:31:35 GMT", + "Referrer-Policy", + "same-origin", + "Server", + "gunicorn", + "Vary", + "Cookie, origin", + "X-Content-Type-Options", + "nosniff", + "X-Frame-Options", + "SAMEORIGIN" + ], + "responseIsBinary": false + }, + { + "scope": "https://sindri.app:443", + "method": "GET", + "path": "/api/v1/circuit/d2b35982-db22-46ed-8398-633a67326497/detail?include_verification_key=true", + "body": "", + "status": 200, + "response": { + "circuit_id": "d2b35982-db22-46ed-8398-633a67326497", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-15T13:31:27.371Z", + "proving_scheme": "groth16", + "status": "Ready", + "compute_time": "P0DT00H00M05.028025S", + "compute_times": { + "total": 5.060947331017815, + "queued": 1.002764, + "clean_up": 0.0005010430468246341, + "create_cpp": 0.030848323018290102, + "file_setup": 0.3499931499827653, + "compile_cpp": 2.9625711779808626, + "create_r1cs": 0.005965905962511897, + "save_results": 0.0023849039571359754, + "get_r1cs_info": 0.0003329960163682699, + "groth16_setup": 0.8954589819768444, + "export_verification_key": 0.8118982950691134, + "download_trusted_setup_file": 0.000777014996856451 + }, + "file_sizes": { + "total": 225418, + "circuit": 213240, + "total_gb": 0.000225418, + "total_mb": 0.225418, + "circuit.dat": 6176, + "code.tar.gz": 497, + "circuit.zkey": 2580, + "verification_key": 2925 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf tsc_known_freq pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cat_l2 cdp_l3 invpcid_single intel_ppin cdp_l2 ssbd mba ibrs ibpb stibp ibrs_enhanced tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 avx2 smep bmi2 erms invpcid cqm rdt_a avx512f avx512dq rdseed adx smap avx512ifma clflushopt clwb intel_pt avx512cd sha_ni avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local split_lock_detect avx_vnni avx512_bf16 wbnoinvd dtherm ida arat pln pts hwp hwp_act_window hwp_epp hwp_pkg_req hfi avx512vbmi umip pku ospke waitpkg avx512_vbmi2 gfni vaes vpclmulqdq avx512_vnni avx512_bitalg tme avx512_vpopcntdq la57 rdpid bus_lock_detect cldemote movdiri movdir64b enqcmd fsrm md_clear serialize tsxldtrk pconfig arch_lbr ibt amx_bf16 avx512_fp16 amx_tile amx_int8 flush_l1d arch_capabilities", + "Model:": "143", + "CPU(s):": "128", + "BogoMIPS:": "5600.00", + "L2 cache:": "128 MiB (64 instances)", + "L3 cache:": "120 MiB (2 instances)", + "Stepping:": "7", + "L1d cache:": "3 MiB (64 instances)", + "L1i cache:": "2 MiB (64 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8462Y+", + "CPU max MHz:": "4100.0000", + "CPU min MHz:": "800.0000", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "52 bits physical, 57 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0-31,64-95", + "NUMA node1 CPU(s):": "32-63,96-127", + "Vulnerability Mds:": "Not affected", + "Core(s) per socket:": "32", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Not affected", + "On-line CPU(s) list:": "0,5-64,69-127", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "1-4,65-68", + "Vulnerability Meltdown:": "Not affected", + "Vulnerability Retbleed:": "Not affected", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; Enhanced IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS SW sequence", + "Vulnerability Itlb multihit:": "Not affected", + "Vulnerability Mmio stale data:": "Not affected", + "Vulnerability Tsx async abort:": "Not affected", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" }, - { - "$ref": "#/definitions/Halo2AxiomV030SindriManifest" + "GPU": { + "gpus": [], + "num_gpus": 0 }, - { - "$ref": "#/definitions/NoirSindriManifest" + "RAM": { + "virtual_memory_total_gb": 48 } - ], - "definitions": { - "CircomCurveOptions": { - "title": "CircomCurveOptions", - "description": "The supported Circom curves.", - "enum": [ - "bn254" + }, + "verification_key": { + "protocol": "groth16", + "curve": "bn128", + "nPublic": 1, + "vk_alpha_1": [ + "20491192805390485299153009773594534940189261866228447918068658471970481763042", + "9383485363053290200918347156157836566562967994039712273449902621266178545958", + "1" + ], + "vk_beta_2": [ + [ + "6375614351688725206403948262868962793625744043794305715222011528459656738731", + "4252822878758300859123897981450591353533073413197771768651442665752259397132" ], - "type": "string" - }, - "CircomProvingSchemeOptions": { - "title": "CircomProvingSchemeOptions", - "description": "The supported Circom proving schemes.", - "enum": [ - "groth16" + [ + "10505242626370262277552901082094356697409835680220590971873171140371331206856", + "21847035105528745403288232691147584728191162732299865338377159692350059136679" ], - "type": "string" - }, - "CircomWitnessCompilerOptions": { - "title": "CircomWitnessCompilerOptions", - "description": "The supported Circom witness compilers.", - "enum": [ - "c++", - "wasm" + [ + "1", + "0" + ] + ], + "vk_gamma_2": [ + [ + "10857046999023057135944570762232829481370756359578518086990519993285655852781", + "11559732032986387107991004021392285783925812861821192530917403151452391805634" ], - "type": "string" - }, - "CircomSindriManifest": { - "title": "Sindri Manifest for Circom Circuits", - "description": "Sindri Manifest for Circom circuits.", - "type": "object", - "properties": { - "name": { - "title": "Circuit Name", - "description": "The circuit name used to uniquely identify the circuit within your organization. Similar to a GitHub project name or a Docker image name.", - "pattern": "^[-a-zA-Z0-9_]+$", - "error_messages": { - "regex": "`name` must be a valid slug." - }, - "type": "string" - }, - "circuitType": { - "title": "Circuit Type", - "description": "The (frontend) development framework that your circuit is written with.", - "enum": [ - "circom" - ], - "type": "string" - }, - "curve": { - "title": "Proving Curve", - "description": "The curve over which the proof is executed.", - "default": "bn254", - "allOf": [ - { - "$ref": "#/definitions/CircomCurveOptions" - } - ] - }, - "provingScheme": { - "description": "The backend proving scheme.", - "default": "groth16", - "allOf": [ - { - "$ref": "#/definitions/CircomProvingSchemeOptions" - } - ] - }, - "witnessCompiler": { - "description": "The circuit witness compiler.", - "default": "c++", - "allOf": [ - { - "$ref": "#/definitions/CircomWitnessCompilerOptions" - } - ] - }, - "$schema": { - "type": "string", - "title": "Sindri Manifest JSON Schema URL", - "description": "The URL pointing to a Sindri JSON Manifest schema definition.", - "examples": [ - "https://sindri.app/api/v1/sindri-manifest-schema.json" - ] - } - }, - "required": [ - "name", - "circuitType" + [ + "8495653923123431417604973247489272438418190587263600148770280649306958101930", + "4082367875863433681332203403145435568316851327593401208105741076214120093531" ], - "additionalProperties": false - }, - "GnarkCurveOptions": { - "title": "GnarkCurveOptions", - "description": "The supported Gnark curves.", - "enum": [ - "bls12-377", - "bls12-381", - "bls24-315", - "bn254", - "bw6-633", - "bw6-761" + [ + "1", + "0" + ] + ], + "vk_delta_2": [ + [ + "10857046999023057135944570762232829481370756359578518086990519993285655852781", + "11559732032986387107991004021392285783925812861821192530917403151452391805634" ], - "type": "string" - }, - "GnarkVersionOptions": { - "title": "GnarkVersionOptions", - "description": "The supported Gnark framework versions.", - "enum": [ - "v0.8.1", - "v0.9.0" + [ + "8495653923123431417604973247489272438418190587263600148770280649306958101930", + "4082367875863433681332203403145435568316851327593401208105741076214120093531" ], - "type": "string" - }, - "GnarkProvingSchemeOptions": { - "title": "GnarkProvingSchemeOptions", - "description": "The supported Gnark proving schemes.", - "enum": [ - "groth16" + [ + "1", + "0" + ] + ], + "vk_alphabeta_12": [ + [ + [ + "2029413683389138792403550203267699914886160938906632433982220835551125967885", + "21072700047562757817161031222997517981543347628379360635925549008442030252106" + ], + [ + "5940354580057074848093997050200682056184807770593307860589430076672439820312", + "12156638873931618554171829126792193045421052652279363021382169897324752428276" + ], + [ + "7898200236362823042373859371574133993780991612861777490112507062703164551277", + "7074218545237549455313236346927434013100842096812539264420499035217050630853" + ] ], - "type": "string" - }, - "GnarkSindriManifest": { - "title": "Sindri Manifest for Gnark Circuits", - "description": "Sindri Manifest for Gnark circuits.", - "type": "object", - "properties": { - "name": { - "title": "Circuit Name", - "description": "The circuit name used to uniquely identify the circuit within your organization. Similar to a GitHub project name or a Docker image name.", - "pattern": "^[-a-zA-Z0-9_]+$", - "error_messages": { - "regex": "`name` must be a valid slug." - }, - "type": "string" - }, - "circuitStructName": { - "title": "Circuit Struct Name", - "description": "The name of the Go struct which defines your circuit inputs.", - "pattern": "^[A-Z][A-Za-z0-9_]*$", - "error_messages": { - "regex": "`circuitStructName` must be a valid Go exported struct name." - }, - "type": "string" - }, - "circuitType": { - "title": "Circuit Type", - "description": "The (frontend) development framework that your circuit is written with.", - "enum": [ - "gnark" - ], - "type": "string" - }, - "curve": { - "title": "Proving Curve", - "description": "The curve over which the proof is executed.", - "default": "bn254", - "allOf": [ - { - "$ref": "#/definitions/GnarkCurveOptions" - } - ] - }, - "gnarkVersion": { - "description": "The version of the Gnark framework that your circuit uses.", - "allOf": [ - { - "$ref": "#/definitions/GnarkVersionOptions" - } - ] - }, - "packageName": { - "title": "Go Package Name", - "description": "The name of the Go package containing your circuit definition.", - "pattern": "^[a-z][a-z0-9]*$", - "error_messages": { - "regex": "`packageName` must be a valid Go package name." - }, - "type": "string" - }, - "provingScheme": { - "description": "The backend proving scheme.", - "default": "groth16", - "allOf": [ - { - "$ref": "#/definitions/GnarkProvingSchemeOptions" - } - ] - }, - "$schema": { - "type": "string", - "title": "Sindri Manifest JSON Schema URL", - "description": "The URL pointing to a Sindri JSON Manifest schema definition.", - "examples": [ - "https://sindri.app/api/v1/sindri-manifest-schema.json" - ] - } - }, - "required": [ - "name", - "circuitStructName", - "circuitType", - "gnarkVersion", - "packageName" + [ + [ + "7077479683546002997211712695946002074877511277312570035766170199895071832130", + "10093483419865920389913245021038182291233451549023025229112148274109565435465" + ], + [ + "4595479056700221319381530156280926371456704509942304414423590385166031118820", + "19831328484489333784475432780421641293929726139240675179672856274388269393268" + ], + [ + "11934129596455521040620786944827826205713621633706285934057045369193958244500", + "8037395052364110730298837004334506829870972346962140206007064471173334027475" + ] + ] + ], + "IC": [ + [ + "6819801395408938350212900248749732364821477541620635511814266536599629892365", + "9092252330033992554755034971584864587974280972948086568597554018278609861372", + "1" ], - "additionalProperties": false + [ + "17882351432929302592725330552407222299541667716607588771282887857165175611387", + "18907419617206324833977586007131055763810739835484972981819026406579664278293", + "1" + ] + ] + }, + "error": null, + "curve": "bn254", + "degree": 0, + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0, + "num_wires": 4, + "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", + "witness_compiler": "c++" + }, + "rawHeaders": [ + "Content-Length", + "6790", + "Content-Type", + "application/json; charset=utf-8", + "Date", + "Mon, 15 Jan 2024 13:31:35 GMT", + "Referrer-Policy", + "same-origin", + "Server", + "gunicorn", + "Vary", + "Cookie, origin", + "X-Content-Type-Options", + "nosniff", + "X-Frame-Options", + "SAMEORIGIN" + ], + "responseIsBinary": false + }, + { + "scope": "https://sindri.app:443", + "method": "GET", + "path": "/api/v1/circuit/16cc9ce9-c462-4544-889b-b92a8aa2a163/detail?include_verification_key=false", + "body": "", + "status": 200, + "response": { + "circuit_id": "16cc9ce9-c462-4544-889b-b92a8aa2a163", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-15T13:31:28.205Z", + "proving_scheme": "groth16", + "status": "In Progress", + "compute_time": null, + "compute_times": { + "total": 0.0002499771071597934, + "queued": 5.016909 + }, + "file_sizes": { + "total": 497, + "total_gb": 4.97e-7, + "total_mb": 0.000497, + "code.tar.gz": 497 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf tsc_known_freq pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cat_l2 cdp_l3 invpcid_single intel_ppin cdp_l2 ssbd mba ibrs ibpb stibp ibrs_enhanced tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 avx2 smep bmi2 erms invpcid cqm rdt_a avx512f avx512dq rdseed adx smap avx512ifma clflushopt clwb intel_pt avx512cd sha_ni avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local split_lock_detect avx_vnni avx512_bf16 wbnoinvd dtherm ida arat pln pts hwp hwp_act_window hwp_epp hwp_pkg_req hfi avx512vbmi umip pku ospke waitpkg avx512_vbmi2 gfni vaes vpclmulqdq avx512_vnni avx512_bitalg tme avx512_vpopcntdq la57 rdpid bus_lock_detect cldemote movdiri movdir64b enqcmd fsrm md_clear serialize tsxldtrk pconfig arch_lbr ibt amx_bf16 avx512_fp16 amx_tile amx_int8 flush_l1d arch_capabilities", + "Model:": "143", + "CPU(s):": "128", + "BogoMIPS:": "5600.00", + "L2 cache:": "128 MiB (64 instances)", + "L3 cache:": "120 MiB (2 instances)", + "Stepping:": "7", + "L1d cache:": "3 MiB (64 instances)", + "L1i cache:": "2 MiB (64 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8462Y+", + "CPU max MHz:": "4100.0000", + "CPU min MHz:": "800.0000", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "52 bits physical, 57 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0-31,64-95", + "NUMA node1 CPU(s):": "32-63,96-127", + "Vulnerability Mds:": "Not affected", + "Core(s) per socket:": "32", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Not affected", + "On-line CPU(s) list:": "0,5-64,69-127", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "1-4,65-68", + "Vulnerability Meltdown:": "Not affected", + "Vulnerability Retbleed:": "Not affected", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; Enhanced IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS SW sequence", + "Vulnerability Itlb multihit:": "Not affected", + "Vulnerability Mmio stale data:": "Not affected", + "Vulnerability Tsx async abort:": "Not affected", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" }, - "Halo2ProvingSchemeOptions": { - "title": "Halo2ProvingSchemeOptions", - "description": "The supported Halo2 proving schemes.", - "enum": [ - "shplonk" - ], - "type": "string" - }, - "Halo2AxiomV022SindriManifest": { - "title": "Sindri Manifest for Axiom v0.2.2 Halo2 Circuits", - "description": "Sindri Manifest for Axiom v0.2.2 circuits built with the Halo2 framework.", - "type": "object", - "properties": { - "name": { - "title": "Circuit Name", - "description": "The circuit name used to uniquely identify the circuit within your organization. Similar to a GitHub project name or a Docker image name.", - "pattern": "^[-a-zA-Z0-9_]+$", - "error_messages": { - "regex": "`name` must be a valid slug." - }, - "type": "string" - }, - "circuitType": { - "title": "Circuit Type", - "description": "The (frontend) development framework that your circuit is written with.", - "enum": [ - "halo2" - ], - "type": "string" - }, - "className": { - "title": "Circuit Class Name", - "description": "The path to your circuit struct definition. (*e.g.* `my-package::my_file::MyCircuitStruct`).", - "pattern": "^([A-Za-z_][A-Za-z0-9_]*::)+[A-Za-z_][A-Za-z0-9_]*$", - "error_messages": { - "regex": "`className` must be a valid and fully qualifed Rust path to a struct including the crate name." - }, - "type": "string" - }, - "degree": { - "title": "Degree", - "description": "Specifies that the circuit will have 2^degree rows.", - "type": "integer" - }, - "packageName": { - "title": "Rust Package Name", - "description": "The name of the Rust package containing your circuit.", - "pattern": "^[a-z0-9_]+(?:-[a-z0-9_]+)*$", - "error_messages": { - "regex": "`packageName` must be a valid Rust crate name." - }, - "type": "string" - }, - "provingScheme": { - "description": "The backend proving scheme.", - "default": "shplonk", - "allOf": [ - { - "$ref": "#/definitions/Halo2ProvingSchemeOptions" - } - ] - }, - "halo2Version": { - "title": "Halo2 Version", - "description": "The Halo2 frontend that your circuit is written with.", - "enum": [ - "axiom-v0.2.2" - ], - "type": "string" - }, - "$schema": { - "type": "string", - "title": "Sindri Manifest JSON Schema URL", - "description": "The URL pointing to a Sindri JSON Manifest schema definition.", - "examples": [ - "https://sindri.app/api/v1/sindri-manifest-schema.json" - ] - } - }, - "required": [ - "name", - "circuitType", - "className", - "degree", - "packageName", - "halo2Version" - ], - "additionalProperties": false - }, - "Halo2AxiomV030SindriManifest": { - "title": "Sindri Manifest for Axiom v0.3.0 Halo2 Circuits", - "description": "Sindri Manifest for Axiom v0.3.0 circuits built with the Halo2 framework.", - "type": "object", - "properties": { - "name": { - "title": "Circuit Name", - "description": "The circuit name used to uniquely identify the circuit within your organization. Similar to a GitHub project name or a Docker image name.", - "pattern": "^[-a-zA-Z0-9_]+$", - "error_messages": { - "regex": "`name` must be a valid slug." - }, - "type": "string" - }, - "circuitType": { - "title": "Circuit Type", - "description": "The (frontend) development framework that your circuit is written with.", - "enum": [ - "halo2" - ], - "type": "string" - }, - "className": { - "title": "Circuit Class Name", - "description": "The path to your circuit struct definition. (*e.g.* `my-package::my_file::MyCircuitStruct`).", - "pattern": "^([A-Za-z_][A-Za-z0-9_]*::)+[A-Za-z_][A-Za-z0-9_]*$", - "error_messages": { - "regex": "`className` must be a valid and fully qualifed Rust path to a struct including the crate name." - }, - "type": "string" - }, - "degree": { - "title": "Degree", - "description": "Specifies that the circuit will have 2^degree rows.", - "type": "integer" - }, - "packageName": { - "title": "Rust Package Name", - "description": "The name of the Rust package containing your circuit.", - "pattern": "^[a-z0-9_]+(?:-[a-z0-9_]+)*$", - "error_messages": { - "regex": "`packageName` must be a valid Rust crate name." - }, - "type": "string" - }, - "provingScheme": { - "description": "The backend proving scheme.", - "default": "shplonk", - "allOf": [ - { - "$ref": "#/definitions/Halo2ProvingSchemeOptions" - } - ] - }, - "halo2Version": { - "title": "Halo2 Version", - "description": "The Halo2 frontend that your circuit is written with.", - "enum": [ - "axiom-v0.3.0" - ], - "type": "string" - }, - "threadBuilder": { - "title": "Thread Builder", - "description": "The type of multi-threaded witness generator used. Choose GateThreadBuilder for simple circuits or RlcThreadBuilder for advanced applications that require sources of randomness.", - "enum": [ - "GateThreadBuilder", - "RlcThreadBuilder" - ], - "type": "string" - }, - "$schema": { - "type": "string", - "title": "Sindri Manifest JSON Schema URL", - "description": "The URL pointing to a Sindri JSON Manifest schema definition.", - "examples": [ - "https://sindri.app/api/v1/sindri-manifest-schema.json" - ] - } - }, - "required": [ - "name", - "circuitType", - "className", - "degree", - "packageName", - "halo2Version", - "threadBuilder" - ], - "additionalProperties": false + "GPU": { + "gpus": [], + "num_gpus": 0 }, - "NoirProvingSchemeOptions": { - "title": "NoirProvingSchemeOptions", - "description": "The supported Noir proving schemes.", - "enum": [ - "barretenberg" - ], - "type": "string" - }, - "NoirSindriManifest": { - "title": "Sindri Manifest for Noir Circuits", - "description": "Sindri Manifest for Noir circuits.", - "type": "object", - "properties": { - "name": { - "title": "Circuit Name", - "description": "The circuit name used to uniquely identify the circuit within your organization. Similar to a GitHub project name or a Docker image name.", - "pattern": "^[-a-zA-Z0-9_]+$", - "error_messages": { - "regex": "`name` must be a valid slug." - }, - "type": "string" - }, - "circuitType": { - "title": "Circuit Type", - "description": "The (frontend) development framework that your circuit is written with.", - "enum": [ - "noir" - ], - "type": "string" - }, - "provingScheme": { - "description": "The backend proving scheme.", - "default": "barretenberg", - "allOf": [ - { - "$ref": "#/definitions/NoirProvingSchemeOptions" - } - ] - }, - "$schema": { - "type": "string", - "title": "Sindri Manifest JSON Schema URL", - "description": "The URL pointing to a Sindri JSON Manifest schema definition.", - "examples": [ - "https://sindri.app/api/v1/sindri-manifest-schema.json" - ] - } - }, - "required": [ - "name", - "circuitType" - ], - "additionalProperties": false + "RAM": { + "virtual_memory_total_gb": 48 } - } + }, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": null, + "num_constraints": null, + "num_outputs": null, + "num_private_inputs": null, + "num_public_inputs": null, + "num_wires": null, + "trusted_setup_file": "", + "witness_compiler": "c++" }, "rawHeaders": [ - "Access-Control-Allow-Origin", - "*", "Content-Length", - "14963", + "3642", "Content-Type", - "application/schema+json", + "application/json; charset=utf-8", "Date", - "Sun, 07 Jan 2024 04:06:44 GMT", + "Mon, 15 Jan 2024 13:31:35 GMT", "Referrer-Policy", "same-origin", "Server", @@ -518,491 +34581,511 @@ "X-Content-Type-Options", "nosniff", "X-Frame-Options", - "SAMEORIGIN", - "Connection", - "close" + "SAMEORIGIN" ], "responseIsBinary": false }, { "scope": "https://sindri.app:443", - "method": "get", - "path": "/api/v1/sindri-manifest-schema.json", + "method": "GET", + "path": "/api/v1/circuit/cd090915-c649-4d03-a97b-e962996ddd20/detail?include_verification_key=false", "body": "", "status": 200, "response": { - "$id": "https://sindri.app/api/v1/sindri-manifest-schema.json", - "$schema": "http://json-schema.org/draft-07/schema#", - "title": "SindriManifest", - "description": "Sindri Manifest file schema for `sindri.json` files.", - "anyOf": [ - { - "$ref": "#/definitions/CircomSindriManifest" + "circuit_id": "cd090915-c649-4d03-a97b-e962996ddd20", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-15T13:31:27.776Z", + "proving_scheme": "groth16", + "status": "Ready", + "compute_time": "P0DT00H00M06.629298S", + "compute_times": { + "total": 6.6755576292052865, + "queued": 1.176057, + "clean_up": 0.0018914993852376938, + "create_cpp": 0.05316939204931259, + "file_setup": 0.22646267898380756, + "compile_cpp": 4.249306512996554, + "create_r1cs": 0.017062108032405376, + "save_results": 0.030750948935747147, + "get_r1cs_info": 0.0009490260854363441, + "groth16_setup": 1.0647103870287538, + "export_verification_key": 1.028034188784659, + "download_trusted_setup_file": 0.0026015527546405792 + }, + "file_sizes": { + "total": 225418, + "circuit": 213240, + "total_gb": 0.000225418, + "total_mb": 0.225418, + "circuit.dat": 6176, + "code.tar.gz": 497, + "circuit.zkey": 2580, + "verification_key": 2925 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", + "Model:": "85", + "CPU(s):": "32", + "BogoMIPS:": "6400.00", + "L2 cache:": "16 MiB (16 instances)", + "L3 cache:": "49.5 MiB (2 instances)", + "Stepping:": "4", + "L1d cache:": "512 KiB (16 instances)", + "L1i cache:": "512 KiB (16 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Gold 6134 CPU @ 3.20GHz", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "46 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30", + "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31", + "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Core(s) per socket:": "8", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", + "On-line CPU(s) list:": "0-31", + "Vulnerability Srbds:": "Not affected", + "Vulnerability Meltdown:": "Mitigation; PTI", + "Vulnerability Retbleed:": "Mitigation; IBRS", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, STIBP conditional, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", + "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" }, - { - "$ref": "#/definitions/GnarkSindriManifest" + "GPU": { + "gpus": [], + "num_gpus": 0 }, - { - "$ref": "#/definitions/Halo2AxiomV022SindriManifest" + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": 0, + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0, + "num_wires": 4, + "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", + "witness_compiler": "c++" + }, + "rawHeaders": [ + "Content-Length", + "3924", + "Content-Type", + "application/json; charset=utf-8", + "Date", + "Mon, 15 Jan 2024 13:31:36 GMT", + "Referrer-Policy", + "same-origin", + "Server", + "gunicorn", + "Vary", + "Cookie, origin", + "X-Content-Type-Options", + "nosniff", + "X-Frame-Options", + "SAMEORIGIN" + ], + "responseIsBinary": false + }, + { + "scope": "https://sindri.app:443", + "method": "GET", + "path": "/api/v1/circuit/16cc9ce9-c462-4544-889b-b92a8aa2a163/detail?include_verification_key=false", + "body": "", + "status": 200, + "response": { + "circuit_id": "16cc9ce9-c462-4544-889b-b92a8aa2a163", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-15T13:31:28.205Z", + "proving_scheme": "groth16", + "status": "In Progress", + "compute_time": null, + "compute_times": { + "total": 0.0002499771071597934, + "queued": 5.016909 + }, + "file_sizes": { + "total": 497, + "total_gb": 4.97e-7, + "total_mb": 0.000497, + "code.tar.gz": 497 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf tsc_known_freq pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cat_l2 cdp_l3 invpcid_single intel_ppin cdp_l2 ssbd mba ibrs ibpb stibp ibrs_enhanced tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 avx2 smep bmi2 erms invpcid cqm rdt_a avx512f avx512dq rdseed adx smap avx512ifma clflushopt clwb intel_pt avx512cd sha_ni avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local split_lock_detect avx_vnni avx512_bf16 wbnoinvd dtherm ida arat pln pts hwp hwp_act_window hwp_epp hwp_pkg_req hfi avx512vbmi umip pku ospke waitpkg avx512_vbmi2 gfni vaes vpclmulqdq avx512_vnni avx512_bitalg tme avx512_vpopcntdq la57 rdpid bus_lock_detect cldemote movdiri movdir64b enqcmd fsrm md_clear serialize tsxldtrk pconfig arch_lbr ibt amx_bf16 avx512_fp16 amx_tile amx_int8 flush_l1d arch_capabilities", + "Model:": "143", + "CPU(s):": "128", + "BogoMIPS:": "5600.00", + "L2 cache:": "128 MiB (64 instances)", + "L3 cache:": "120 MiB (2 instances)", + "Stepping:": "7", + "L1d cache:": "3 MiB (64 instances)", + "L1i cache:": "2 MiB (64 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8462Y+", + "CPU max MHz:": "4100.0000", + "CPU min MHz:": "800.0000", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "52 bits physical, 57 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0-31,64-95", + "NUMA node1 CPU(s):": "32-63,96-127", + "Vulnerability Mds:": "Not affected", + "Core(s) per socket:": "32", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Not affected", + "On-line CPU(s) list:": "0,5-64,69-127", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "1-4,65-68", + "Vulnerability Meltdown:": "Not affected", + "Vulnerability Retbleed:": "Not affected", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; Enhanced IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS SW sequence", + "Vulnerability Itlb multihit:": "Not affected", + "Vulnerability Mmio stale data:": "Not affected", + "Vulnerability Tsx async abort:": "Not affected", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" }, - { - "$ref": "#/definitions/Halo2AxiomV030SindriManifest" + "GPU": { + "gpus": [], + "num_gpus": 0 }, - { - "$ref": "#/definitions/NoirSindriManifest" + "RAM": { + "virtual_memory_total_gb": 48 } - ], - "definitions": { - "CircomCurveOptions": { - "title": "CircomCurveOptions", - "description": "The supported Circom curves.", - "enum": [ - "bn254" - ], - "type": "string" + }, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": null, + "num_constraints": null, + "num_outputs": null, + "num_private_inputs": null, + "num_public_inputs": null, + "num_wires": null, + "trusted_setup_file": "", + "witness_compiler": "c++" + }, + "rawHeaders": [ + "Content-Length", + "3642", + "Content-Type", + "application/json; charset=utf-8", + "Date", + "Mon, 15 Jan 2024 13:31:36 GMT", + "Referrer-Policy", + "same-origin", + "Server", + "gunicorn", + "Vary", + "Cookie, origin", + "X-Content-Type-Options", + "nosniff", + "X-Frame-Options", + "SAMEORIGIN" + ], + "responseIsBinary": false + }, + { + "scope": "https://sindri.app:443", + "method": "POST", + "path": "/api/v1/circuit/cd090915-c649-4d03-a97b-e962996ddd20/prove", + "body": "------WebKitFormBoundaryk6UCIHlzLuqNqddC\r\nContent-Disposition: form-data; name=\"proof_input\"\r\n\r\n{\"a\":\"5\",\"b\":\"4\"}\r\n------WebKitFormBoundaryk6UCIHlzLuqNqddC--\r\n", + "status": 201, + "response": { + "proof_id": "91bd2c4c-c595-4b96-8575-029e389492ca", + "circuit_name": "circom-multiplier2", + "circuit_id": "cd090915-c649-4d03-a97b-e962996ddd20", + "circuit_type": "circom", + "date_created": "2024-01-15T13:31:37.101Z", + "perform_verify": false, + "status": "Queued", + "compute_time": null, + "compute_times": null, + "file_sizes": null, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "proof_input": null, + "proof": null, + "prover_implementation": {}, + "public": null, + "worker_hardware": null, + "verification_key": null, + "error": null + }, + "rawHeaders": [ + "Content-Length", + "547", + "Content-Type", + "application/json; charset=utf-8", + "Date", + "Mon, 15 Jan 2024 13:31:37 GMT", + "Referrer-Policy", + "same-origin", + "Server", + "gunicorn", + "Vary", + "Cookie, origin", + "X-Content-Type-Options", + "nosniff", + "X-Frame-Options", + "SAMEORIGIN" + ], + "responseIsBinary": false + }, + { + "scope": "https://sindri.app:443", + "method": "GET", + "path": "/api/v1/circuit/16cc9ce9-c462-4544-889b-b92a8aa2a163/detail?include_verification_key=false", + "body": "", + "status": 200, + "response": { + "circuit_id": "16cc9ce9-c462-4544-889b-b92a8aa2a163", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-15T13:31:28.205Z", + "proving_scheme": "groth16", + "status": "In Progress", + "compute_time": null, + "compute_times": { + "total": 0.0002499771071597934, + "queued": 5.016909 + }, + "file_sizes": { + "total": 497, + "total_gb": 4.97e-7, + "total_mb": 0.000497, + "code.tar.gz": 497 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf tsc_known_freq pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cat_l2 cdp_l3 invpcid_single intel_ppin cdp_l2 ssbd mba ibrs ibpb stibp ibrs_enhanced tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 avx2 smep bmi2 erms invpcid cqm rdt_a avx512f avx512dq rdseed adx smap avx512ifma clflushopt clwb intel_pt avx512cd sha_ni avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local split_lock_detect avx_vnni avx512_bf16 wbnoinvd dtherm ida arat pln pts hwp hwp_act_window hwp_epp hwp_pkg_req hfi avx512vbmi umip pku ospke waitpkg avx512_vbmi2 gfni vaes vpclmulqdq avx512_vnni avx512_bitalg tme avx512_vpopcntdq la57 rdpid bus_lock_detect cldemote movdiri movdir64b enqcmd fsrm md_clear serialize tsxldtrk pconfig arch_lbr ibt amx_bf16 avx512_fp16 amx_tile amx_int8 flush_l1d arch_capabilities", + "Model:": "143", + "CPU(s):": "128", + "BogoMIPS:": "5600.00", + "L2 cache:": "128 MiB (64 instances)", + "L3 cache:": "120 MiB (2 instances)", + "Stepping:": "7", + "L1d cache:": "3 MiB (64 instances)", + "L1i cache:": "2 MiB (64 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8462Y+", + "CPU max MHz:": "4100.0000", + "CPU min MHz:": "800.0000", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "52 bits physical, 57 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0-31,64-95", + "NUMA node1 CPU(s):": "32-63,96-127", + "Vulnerability Mds:": "Not affected", + "Core(s) per socket:": "32", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Not affected", + "On-line CPU(s) list:": "0,5-64,69-127", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "1-4,65-68", + "Vulnerability Meltdown:": "Not affected", + "Vulnerability Retbleed:": "Not affected", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; Enhanced IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS SW sequence", + "Vulnerability Itlb multihit:": "Not affected", + "Vulnerability Mmio stale data:": "Not affected", + "Vulnerability Tsx async abort:": "Not affected", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" }, - "CircomProvingSchemeOptions": { - "title": "CircomProvingSchemeOptions", - "description": "The supported Circom proving schemes.", - "enum": [ - "groth16" - ], - "type": "string" - }, - "CircomWitnessCompilerOptions": { - "title": "CircomWitnessCompilerOptions", - "description": "The supported Circom witness compilers.", - "enum": [ - "c++", - "wasm" - ], - "type": "string" - }, - "CircomSindriManifest": { - "title": "Sindri Manifest for Circom Circuits", - "description": "Sindri Manifest for Circom circuits.", - "type": "object", - "properties": { - "name": { - "title": "Circuit Name", - "description": "The circuit name used to uniquely identify the circuit within your organization. Similar to a GitHub project name or a Docker image name.", - "pattern": "^[-a-zA-Z0-9_]+$", - "error_messages": { - "regex": "`name` must be a valid slug." - }, - "type": "string" - }, - "circuitType": { - "title": "Circuit Type", - "description": "The (frontend) development framework that your circuit is written with.", - "enum": [ - "circom" - ], - "type": "string" - }, - "curve": { - "title": "Proving Curve", - "description": "The curve over which the proof is executed.", - "default": "bn254", - "allOf": [ - { - "$ref": "#/definitions/CircomCurveOptions" - } - ] - }, - "provingScheme": { - "description": "The backend proving scheme.", - "default": "groth16", - "allOf": [ - { - "$ref": "#/definitions/CircomProvingSchemeOptions" - } - ] - }, - "witnessCompiler": { - "description": "The circuit witness compiler.", - "default": "c++", - "allOf": [ - { - "$ref": "#/definitions/CircomWitnessCompilerOptions" - } - ] - }, - "$schema": { - "type": "string", - "title": "Sindri Manifest JSON Schema URL", - "description": "The URL pointing to a Sindri JSON Manifest schema definition.", - "examples": [ - "https://sindri.app/api/v1/sindri-manifest-schema.json" - ] - } - }, - "required": [ - "name", - "circuitType" - ], - "additionalProperties": false - }, - "GnarkCurveOptions": { - "title": "GnarkCurveOptions", - "description": "The supported Gnark curves.", - "enum": [ - "bls12-377", - "bls12-381", - "bls24-315", - "bn254", - "bw6-633", - "bw6-761" - ], - "type": "string" - }, - "GnarkVersionOptions": { - "title": "GnarkVersionOptions", - "description": "The supported Gnark framework versions.", - "enum": [ - "v0.8.1", - "v0.9.0" - ], - "type": "string" + "GPU": { + "gpus": [], + "num_gpus": 0 }, - "GnarkProvingSchemeOptions": { - "title": "GnarkProvingSchemeOptions", - "description": "The supported Gnark proving schemes.", - "enum": [ - "groth16" - ], - "type": "string" - }, - "GnarkSindriManifest": { - "title": "Sindri Manifest for Gnark Circuits", - "description": "Sindri Manifest for Gnark circuits.", - "type": "object", - "properties": { - "name": { - "title": "Circuit Name", - "description": "The circuit name used to uniquely identify the circuit within your organization. Similar to a GitHub project name or a Docker image name.", - "pattern": "^[-a-zA-Z0-9_]+$", - "error_messages": { - "regex": "`name` must be a valid slug." - }, - "type": "string" - }, - "circuitStructName": { - "title": "Circuit Struct Name", - "description": "The name of the Go struct which defines your circuit inputs.", - "pattern": "^[A-Z][A-Za-z0-9_]*$", - "error_messages": { - "regex": "`circuitStructName` must be a valid Go exported struct name." - }, - "type": "string" - }, - "circuitType": { - "title": "Circuit Type", - "description": "The (frontend) development framework that your circuit is written with.", - "enum": [ - "gnark" - ], - "type": "string" - }, - "curve": { - "title": "Proving Curve", - "description": "The curve over which the proof is executed.", - "default": "bn254", - "allOf": [ - { - "$ref": "#/definitions/GnarkCurveOptions" - } - ] - }, - "gnarkVersion": { - "description": "The version of the Gnark framework that your circuit uses.", - "allOf": [ - { - "$ref": "#/definitions/GnarkVersionOptions" - } - ] - }, - "packageName": { - "title": "Go Package Name", - "description": "The name of the Go package containing your circuit definition.", - "pattern": "^[a-z][a-z0-9]*$", - "error_messages": { - "regex": "`packageName` must be a valid Go package name." - }, - "type": "string" - }, - "provingScheme": { - "description": "The backend proving scheme.", - "default": "groth16", - "allOf": [ - { - "$ref": "#/definitions/GnarkProvingSchemeOptions" - } - ] - }, - "$schema": { - "type": "string", - "title": "Sindri Manifest JSON Schema URL", - "description": "The URL pointing to a Sindri JSON Manifest schema definition.", - "examples": [ - "https://sindri.app/api/v1/sindri-manifest-schema.json" - ] - } - }, - "required": [ - "name", - "circuitStructName", - "circuitType", - "gnarkVersion", - "packageName" - ], - "additionalProperties": false + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": null, + "num_constraints": null, + "num_outputs": null, + "num_private_inputs": null, + "num_public_inputs": null, + "num_wires": null, + "trusted_setup_file": "", + "witness_compiler": "c++" + }, + "rawHeaders": [ + "Content-Length", + "3642", + "Content-Type", + "application/json; charset=utf-8", + "Date", + "Mon, 15 Jan 2024 13:31:38 GMT", + "Referrer-Policy", + "same-origin", + "Server", + "gunicorn", + "Vary", + "Cookie, origin", + "X-Content-Type-Options", + "nosniff", + "X-Frame-Options", + "SAMEORIGIN" + ], + "responseIsBinary": false + }, + { + "scope": "https://sindri.app:443", + "method": "GET", + "path": "/api/v1/circuit/16cc9ce9-c462-4544-889b-b92a8aa2a163/detail?include_verification_key=false", + "body": "", + "status": 200, + "response": { + "circuit_id": "16cc9ce9-c462-4544-889b-b92a8aa2a163", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-15T13:31:28.205Z", + "proving_scheme": "groth16", + "status": "Ready", + "compute_time": "P0DT00H00M04.747574S", + "compute_times": { + "total": 4.78177017706912, + "queued": 5.016909, + "clean_up": 0.0004598660161718726, + "create_cpp": 0.030555953970178962, + "file_setup": 0.20548532891552895, + "compile_cpp": 2.9665471400367096, + "create_r1cs": 0.00540319096762687, + "save_results": 0.0024345499696210027, + "get_r1cs_info": 0.0003199470229446888, + "groth16_setup": 0.7762336740270257, + "export_verification_key": 0.7933770680101588, + "download_trusted_setup_file": 0.000703481025993824 + }, + "file_sizes": { + "total": 225418, + "circuit": 213240, + "total_gb": 0.000225418, + "total_mb": 0.225418, + "circuit.dat": 6176, + "code.tar.gz": 497, + "circuit.zkey": 2580, + "verification_key": 2925 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf tsc_known_freq pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cat_l2 cdp_l3 invpcid_single intel_ppin cdp_l2 ssbd mba ibrs ibpb stibp ibrs_enhanced tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 avx2 smep bmi2 erms invpcid cqm rdt_a avx512f avx512dq rdseed adx smap avx512ifma clflushopt clwb intel_pt avx512cd sha_ni avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local split_lock_detect avx_vnni avx512_bf16 wbnoinvd dtherm ida arat pln pts hwp hwp_act_window hwp_epp hwp_pkg_req hfi avx512vbmi umip pku ospke waitpkg avx512_vbmi2 gfni vaes vpclmulqdq avx512_vnni avx512_bitalg tme avx512_vpopcntdq la57 rdpid bus_lock_detect cldemote movdiri movdir64b enqcmd fsrm md_clear serialize tsxldtrk pconfig arch_lbr ibt amx_bf16 avx512_fp16 amx_tile amx_int8 flush_l1d arch_capabilities", + "Model:": "143", + "CPU(s):": "128", + "BogoMIPS:": "5600.00", + "L2 cache:": "128 MiB (64 instances)", + "L3 cache:": "120 MiB (2 instances)", + "Stepping:": "7", + "L1d cache:": "3 MiB (64 instances)", + "L1i cache:": "2 MiB (64 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8462Y+", + "CPU max MHz:": "4100.0000", + "CPU min MHz:": "800.0000", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "52 bits physical, 57 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0-31,64-95", + "NUMA node1 CPU(s):": "32-63,96-127", + "Vulnerability Mds:": "Not affected", + "Core(s) per socket:": "32", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Not affected", + "On-line CPU(s) list:": "0,5-64,69-127", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "1-4,65-68", + "Vulnerability Meltdown:": "Not affected", + "Vulnerability Retbleed:": "Not affected", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; Enhanced IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS SW sequence", + "Vulnerability Itlb multihit:": "Not affected", + "Vulnerability Mmio stale data:": "Not affected", + "Vulnerability Tsx async abort:": "Not affected", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" }, - "Halo2ProvingSchemeOptions": { - "title": "Halo2ProvingSchemeOptions", - "description": "The supported Halo2 proving schemes.", - "enum": [ - "shplonk" - ], - "type": "string" - }, - "Halo2AxiomV022SindriManifest": { - "title": "Sindri Manifest for Axiom v0.2.2 Halo2 Circuits", - "description": "Sindri Manifest for Axiom v0.2.2 circuits built with the Halo2 framework.", - "type": "object", - "properties": { - "name": { - "title": "Circuit Name", - "description": "The circuit name used to uniquely identify the circuit within your organization. Similar to a GitHub project name or a Docker image name.", - "pattern": "^[-a-zA-Z0-9_]+$", - "error_messages": { - "regex": "`name` must be a valid slug." - }, - "type": "string" - }, - "circuitType": { - "title": "Circuit Type", - "description": "The (frontend) development framework that your circuit is written with.", - "enum": [ - "halo2" - ], - "type": "string" - }, - "className": { - "title": "Circuit Class Name", - "description": "The path to your circuit struct definition. (*e.g.* `my-package::my_file::MyCircuitStruct`).", - "pattern": "^([A-Za-z_][A-Za-z0-9_]*::)+[A-Za-z_][A-Za-z0-9_]*$", - "error_messages": { - "regex": "`className` must be a valid and fully qualifed Rust path to a struct including the crate name." - }, - "type": "string" - }, - "degree": { - "title": "Degree", - "description": "Specifies that the circuit will have 2^degree rows.", - "type": "integer" - }, - "packageName": { - "title": "Rust Package Name", - "description": "The name of the Rust package containing your circuit.", - "pattern": "^[a-z0-9_]+(?:-[a-z0-9_]+)*$", - "error_messages": { - "regex": "`packageName` must be a valid Rust crate name." - }, - "type": "string" - }, - "provingScheme": { - "description": "The backend proving scheme.", - "default": "shplonk", - "allOf": [ - { - "$ref": "#/definitions/Halo2ProvingSchemeOptions" - } - ] - }, - "halo2Version": { - "title": "Halo2 Version", - "description": "The Halo2 frontend that your circuit is written with.", - "enum": [ - "axiom-v0.2.2" - ], - "type": "string" - }, - "$schema": { - "type": "string", - "title": "Sindri Manifest JSON Schema URL", - "description": "The URL pointing to a Sindri JSON Manifest schema definition.", - "examples": [ - "https://sindri.app/api/v1/sindri-manifest-schema.json" - ] - } - }, - "required": [ - "name", - "circuitType", - "className", - "degree", - "packageName", - "halo2Version" - ], - "additionalProperties": false - }, - "Halo2AxiomV030SindriManifest": { - "title": "Sindri Manifest for Axiom v0.3.0 Halo2 Circuits", - "description": "Sindri Manifest for Axiom v0.3.0 circuits built with the Halo2 framework.", - "type": "object", - "properties": { - "name": { - "title": "Circuit Name", - "description": "The circuit name used to uniquely identify the circuit within your organization. Similar to a GitHub project name or a Docker image name.", - "pattern": "^[-a-zA-Z0-9_]+$", - "error_messages": { - "regex": "`name` must be a valid slug." - }, - "type": "string" - }, - "circuitType": { - "title": "Circuit Type", - "description": "The (frontend) development framework that your circuit is written with.", - "enum": [ - "halo2" - ], - "type": "string" - }, - "className": { - "title": "Circuit Class Name", - "description": "The path to your circuit struct definition. (*e.g.* `my-package::my_file::MyCircuitStruct`).", - "pattern": "^([A-Za-z_][A-Za-z0-9_]*::)+[A-Za-z_][A-Za-z0-9_]*$", - "error_messages": { - "regex": "`className` must be a valid and fully qualifed Rust path to a struct including the crate name." - }, - "type": "string" - }, - "degree": { - "title": "Degree", - "description": "Specifies that the circuit will have 2^degree rows.", - "type": "integer" - }, - "packageName": { - "title": "Rust Package Name", - "description": "The name of the Rust package containing your circuit.", - "pattern": "^[a-z0-9_]+(?:-[a-z0-9_]+)*$", - "error_messages": { - "regex": "`packageName` must be a valid Rust crate name." - }, - "type": "string" - }, - "provingScheme": { - "description": "The backend proving scheme.", - "default": "shplonk", - "allOf": [ - { - "$ref": "#/definitions/Halo2ProvingSchemeOptions" - } - ] - }, - "halo2Version": { - "title": "Halo2 Version", - "description": "The Halo2 frontend that your circuit is written with.", - "enum": [ - "axiom-v0.3.0" - ], - "type": "string" - }, - "threadBuilder": { - "title": "Thread Builder", - "description": "The type of multi-threaded witness generator used. Choose GateThreadBuilder for simple circuits or RlcThreadBuilder for advanced applications that require sources of randomness.", - "enum": [ - "GateThreadBuilder", - "RlcThreadBuilder" - ], - "type": "string" - }, - "$schema": { - "type": "string", - "title": "Sindri Manifest JSON Schema URL", - "description": "The URL pointing to a Sindri JSON Manifest schema definition.", - "examples": [ - "https://sindri.app/api/v1/sindri-manifest-schema.json" - ] - } - }, - "required": [ - "name", - "circuitType", - "className", - "degree", - "packageName", - "halo2Version", - "threadBuilder" - ], - "additionalProperties": false + "GPU": { + "gpus": [], + "num_gpus": 0 }, - "NoirProvingSchemeOptions": { - "title": "NoirProvingSchemeOptions", - "description": "The supported Noir proving schemes.", - "enum": [ - "barretenberg" - ], - "type": "string" - }, - "NoirSindriManifest": { - "title": "Sindri Manifest for Noir Circuits", - "description": "Sindri Manifest for Noir circuits.", - "type": "object", - "properties": { - "name": { - "title": "Circuit Name", - "description": "The circuit name used to uniquely identify the circuit within your organization. Similar to a GitHub project name or a Docker image name.", - "pattern": "^[-a-zA-Z0-9_]+$", - "error_messages": { - "regex": "`name` must be a valid slug." - }, - "type": "string" - }, - "circuitType": { - "title": "Circuit Type", - "description": "The (frontend) development framework that your circuit is written with.", - "enum": [ - "noir" - ], - "type": "string" - }, - "provingScheme": { - "description": "The backend proving scheme.", - "default": "barretenberg", - "allOf": [ - { - "$ref": "#/definitions/NoirProvingSchemeOptions" - } - ] - }, - "$schema": { - "type": "string", - "title": "Sindri Manifest JSON Schema URL", - "description": "The URL pointing to a Sindri JSON Manifest schema definition.", - "examples": [ - "https://sindri.app/api/v1/sindri-manifest-schema.json" - ] - } - }, - "required": [ - "name", - "circuitType" - ], - "additionalProperties": false + "RAM": { + "virtual_memory_total_gb": 48 } - } + }, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": 0, + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0, + "num_wires": 4, + "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", + "witness_compiler": "c++" }, "rawHeaders": [ - "Access-Control-Allow-Origin", - "*", "Content-Length", - "14963", + "4149", "Content-Type", - "application/schema+json", + "application/json; charset=utf-8", "Date", - "Sun, 07 Jan 2024 04:06:44 GMT", + "Mon, 15 Jan 2024 13:31:39 GMT", "Referrer-Policy", "same-origin", "Server", @@ -1012,9 +35095,7 @@ "X-Content-Type-Options", "nosniff", "X-Frame-Options", - "SAMEORIGIN", - "Connection", - "close" + "SAMEORIGIN" ], "responseIsBinary": false } diff --git a/test/fixtures/sdk.test.ts.json b/test/fixtures/sdk.test.ts.json index c1e1c69..41126cc 100644 --- a/test/fixtures/sdk.test.ts.json +++ b/test/fixtures/sdk.test.ts.json @@ -2,480 +2,35777 @@ { "scope": "https://sindri.app:443", "method": "GET", - "path": "/api/v1/sindri-manifest-schema.json", + "path": "/api/v1/circuit/list?include_verification_key=false", + "body": "", + "status": 200, + "response": [ + { + "circuit_id": "9bbe03cb-c39f-42df-b91c-ad40785769a7", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-15T13:28:53.977Z", + "proving_scheme": "groth16", + "status": "Ready", + "compute_time": "P0DT00H00M08.046214S", + "compute_times": { + "total": 8.123173575848341, + "queued": 37.732277, + "clean_up": 0.0018738601356744766, + "create_cpp": 0.05183893069624901, + "file_setup": 0.2543136142194271, + "compile_cpp": 4.950523996725678, + "create_r1cs": 0.015572600066661835, + "save_results": 0.005953660234808922, + "get_r1cs_info": 0.0006317459046840668, + "groth16_setup": 1.518635692074895, + "export_verification_key": 1.321570660918951, + "download_trusted_setup_file": 0.0017584580928087234 + }, + "file_sizes": { + "total": 225418, + "circuit": 213240, + "total_gb": 0.000225418, + "total_mb": 0.225418, + "circuit.dat": 6176, + "code.tar.gz": 497, + "circuit.zkey": 2580, + "verification_key": 2925 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", + "Model:": "85", + "CPU(s):": "96", + "BogoMIPS:": "5400.00", + "L2 cache:": "48 MiB (48 instances)", + "L3 cache:": "66 MiB (2 instances)", + "Stepping:": "4", + "L1d cache:": "1.5 MiB (48 instances)", + "L1i cache:": "1.5 MiB (48 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "46 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", + "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", + "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Core(s) per socket:": "24", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", + "On-line CPU(s) list:": "0,1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41-49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89-95", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88", + "Vulnerability Meltdown:": "Mitigation; PTI", + "Vulnerability Retbleed:": "Mitigation; IBRS", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", + "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": 0, + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0, + "num_wires": 4, + "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", + "witness_compiler": "c++" + }, + { + "circuit_id": "c0575a32-e974-4036-8343-02890b5dd43f", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-15T13:28:53.276Z", + "proving_scheme": "groth16", + "status": "Ready", + "compute_time": "P0DT00H00M08.025239S", + "compute_times": { + "total": 8.103251675143838, + "queued": 37.071617, + "clean_up": 0.0019434932619333267, + "create_cpp": 0.05545089207589626, + "file_setup": 0.2586412336677313, + "compile_cpp": 4.959581568837166, + "create_r1cs": 0.017252666875720024, + "save_results": 0.005369381979107857, + "get_r1cs_info": 0.0007654130458831787, + "groth16_setup": 1.369353175163269, + "export_verification_key": 1.4320305939763784, + "download_trusted_setup_file": 0.0025755316019058228 + }, + "file_sizes": { + "total": 225418, + "circuit": 213240, + "total_gb": 0.000225418, + "total_mb": 0.225418, + "circuit.dat": 6176, + "code.tar.gz": 497, + "circuit.zkey": 2580, + "verification_key": 2925 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", + "Model:": "85", + "CPU(s):": "96", + "BogoMIPS:": "5400.00", + "L2 cache:": "48 MiB (48 instances)", + "L3 cache:": "66 MiB (2 instances)", + "Stepping:": "4", + "L1d cache:": "1.5 MiB (48 instances)", + "L1i cache:": "1.5 MiB (48 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "46 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", + "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", + "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Core(s) per socket:": "24", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", + "On-line CPU(s) list:": "0,1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41-49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89-95", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88", + "Vulnerability Meltdown:": "Mitigation; PTI", + "Vulnerability Retbleed:": "Mitigation; IBRS", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", + "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": 0, + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0, + "num_wires": 4, + "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", + "witness_compiler": "c++" + }, + { + "circuit_id": "ddd1b9a9-83e6-41d1-8936-3bff88aa6921", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-15T13:28:53.179Z", + "proving_scheme": "groth16", + "status": "Ready", + "compute_time": "P0DT00H00M08.049708S", + "compute_times": { + "total": 8.133471051231027, + "queued": 33.561144, + "clean_up": 0.001717088744044304, + "create_cpp": 0.04866603575646877, + "file_setup": 0.239702383056283, + "compile_cpp": 5.001192836090922, + "create_r1cs": 0.009522216394543648, + "save_results": 0.006353143602609634, + "get_r1cs_info": 0.000697137787938118, + "groth16_setup": 1.4610587637871504, + "export_verification_key": 1.361605390906334, + "download_trusted_setup_file": 0.002519451081752777 + }, + "file_sizes": { + "total": 225418, + "circuit": 213240, + "total_gb": 0.000225418, + "total_mb": 0.225418, + "circuit.dat": 6176, + "code.tar.gz": 497, + "circuit.zkey": 2580, + "verification_key": 2925 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", + "Model:": "85", + "CPU(s):": "96", + "BogoMIPS:": "5400.00", + "L2 cache:": "48 MiB (48 instances)", + "L3 cache:": "66 MiB (2 instances)", + "Stepping:": "4", + "L1d cache:": "1.5 MiB (48 instances)", + "L1i cache:": "1.5 MiB (48 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "46 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", + "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", + "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Core(s) per socket:": "24", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", + "On-line CPU(s) list:": "0,1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41-49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89-95", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88", + "Vulnerability Meltdown:": "Mitigation; PTI", + "Vulnerability Retbleed:": "Mitigation; IBRS", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", + "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": 0, + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0, + "num_wires": 4, + "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", + "witness_compiler": "c++" + }, + { + "circuit_id": "96444cdd-027c-4c3f-a682-4e72d16bf3a5", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-15T13:28:53.099Z", + "proving_scheme": "groth16", + "status": "Ready", + "compute_time": "P0DT00H00M07.940388S", + "compute_times": { + "total": 8.01799102500081, + "queued": 32.362319, + "clean_up": 0.001860274001955986, + "create_cpp": 0.05603296309709549, + "file_setup": 0.24690320529043674, + "compile_cpp": 4.9119456727057695, + "create_r1cs": 0.009936073794960976, + "save_results": 0.005414023995399475, + "get_r1cs_info": 0.0005574170500040054, + "groth16_setup": 1.3544788006693125, + "export_verification_key": 1.4287667162716389, + "download_trusted_setup_file": 0.0015699360519647598 + }, + "file_sizes": { + "total": 225418, + "circuit": 213240, + "total_gb": 0.000225418, + "total_mb": 0.225418, + "circuit.dat": 6176, + "code.tar.gz": 497, + "circuit.zkey": 2580, + "verification_key": 2925 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", + "Model:": "85", + "CPU(s):": "96", + "BogoMIPS:": "5400.00", + "L2 cache:": "48 MiB (48 instances)", + "L3 cache:": "66 MiB (2 instances)", + "Stepping:": "4", + "L1d cache:": "1.5 MiB (48 instances)", + "L1i cache:": "1.5 MiB (48 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "46 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", + "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", + "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Core(s) per socket:": "24", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", + "On-line CPU(s) list:": "0,1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41-49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89-95", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88", + "Vulnerability Meltdown:": "Mitigation; PTI", + "Vulnerability Retbleed:": "Mitigation; IBRS", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", + "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": 0, + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0, + "num_wires": 4, + "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", + "witness_compiler": "c++" + }, + { + "circuit_id": "fb643fa2-c0d1-43c0-b005-e94ecc364e81", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-15T13:28:52.239Z", + "proving_scheme": "groth16", + "status": "Ready", + "compute_time": "P0DT00H00M07.931796S", + "compute_times": { + "total": 8.004282549023628, + "queued": 30.380939, + "clean_up": 0.003405677154660225, + "create_cpp": 0.04673151113092899, + "file_setup": 0.27263920940458775, + "compile_cpp": 4.911707244813442, + "create_r1cs": 0.017409181222319603, + "save_results": 0.007333524525165558, + "get_r1cs_info": 0.00041870400309562683, + "groth16_setup": 1.4117986112833023, + "export_verification_key": 1.330976827070117, + "download_trusted_setup_file": 0.001385936513543129 + }, + "file_sizes": { + "total": 225450, + "circuit": 213240, + "total_gb": 0.00022545, + "total_mb": 0.22545, + "circuit.dat": 6176, + "code.tar.gz": 529, + "circuit.zkey": 2580, + "verification_key": 2925 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tgz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", + "Model:": "85", + "CPU(s):": "96", + "BogoMIPS:": "5400.00", + "L2 cache:": "48 MiB (48 instances)", + "L3 cache:": "66 MiB (2 instances)", + "Stepping:": "4", + "L1d cache:": "1.5 MiB (48 instances)", + "L1i cache:": "1.5 MiB (48 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "46 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", + "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", + "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Core(s) per socket:": "24", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", + "On-line CPU(s) list:": "0,1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41-49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89-95", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88", + "Vulnerability Meltdown:": "Mitigation; PTI", + "Vulnerability Retbleed:": "Mitigation; IBRS", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", + "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": 0, + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0, + "num_wires": 4, + "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", + "witness_compiler": "c++" + }, + { + "circuit_id": "7ef187a6-8c98-453b-8a71-a9eaaecc0e34", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-15T13:28:51.703Z", + "proving_scheme": "groth16", + "status": "Ready", + "compute_time": "P0DT00H00M07.805326S", + "compute_times": { + "total": 7.880803409963846, + "queued": 29.627509, + "clean_up": 0.0018093828111886978, + "create_cpp": 0.04843143746256828, + "file_setup": 0.2650751415640116, + "compile_cpp": 4.736435519531369, + "create_r1cs": 0.01788560301065445, + "save_results": 0.0059021469205617905, + "get_r1cs_info": 0.00045815669000148773, + "groth16_setup": 1.429807098582387, + "export_verification_key": 1.3734482415020466, + "download_trusted_setup_file": 0.0011302679777145386 + }, + "file_sizes": { + "total": 225450, + "circuit": 213240, + "total_gb": 0.00022545, + "total_mb": 0.22545, + "circuit.dat": 6176, + "code.tar.gz": 529, + "circuit.zkey": 2580, + "verification_key": 2925 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tgz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", + "Model:": "85", + "CPU(s):": "96", + "BogoMIPS:": "5400.00", + "L2 cache:": "48 MiB (48 instances)", + "L3 cache:": "66 MiB (2 instances)", + "Stepping:": "4", + "L1d cache:": "1.5 MiB (48 instances)", + "L1i cache:": "1.5 MiB (48 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "46 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", + "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", + "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Core(s) per socket:": "24", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", + "On-line CPU(s) list:": "0,1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41-49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89-95", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88", + "Vulnerability Meltdown:": "Mitigation; PTI", + "Vulnerability Retbleed:": "Mitigation; IBRS", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", + "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": 0, + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0, + "num_wires": 4, + "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", + "witness_compiler": "c++" + }, + { + "circuit_id": "ef0f5d45-cc4a-44dc-bbcc-68cec83e7279", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-15T13:28:51.482Z", + "proving_scheme": "groth16", + "status": "Ready", + "compute_time": "P0DT00H00M07.567289S", + "compute_times": { + "total": 7.648521225899458, + "queued": 26.571096, + "clean_up": 0.001760430634021759, + "create_cpp": 0.05707797780632973, + "file_setup": 0.25215250812470913, + "compile_cpp": 4.578133208677173, + "create_r1cs": 0.016807612031698227, + "save_results": 0.005696004256606102, + "get_r1cs_info": 0.0005241129547357559, + "groth16_setup": 1.3513143379241228, + "export_verification_key": 1.3831868078559637, + "download_trusted_setup_file": 0.001370033249258995 + }, + "file_sizes": { + "total": 225450, + "circuit": 213240, + "total_gb": 0.00022545, + "total_mb": 0.22545, + "circuit.dat": 6176, + "code.tar.gz": 529, + "circuit.zkey": 2580, + "verification_key": 2925 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tgz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", + "Model:": "85", + "CPU(s):": "96", + "BogoMIPS:": "5400.00", + "L2 cache:": "48 MiB (48 instances)", + "L3 cache:": "66 MiB (2 instances)", + "Stepping:": "4", + "L1d cache:": "1.5 MiB (48 instances)", + "L1i cache:": "1.5 MiB (48 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "46 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", + "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", + "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Core(s) per socket:": "24", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", + "On-line CPU(s) list:": "0,1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41-49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89-95", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88", + "Vulnerability Meltdown:": "Mitigation; PTI", + "Vulnerability Retbleed:": "Mitigation; IBRS", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", + "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": 0, + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0, + "num_wires": 4, + "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", + "witness_compiler": "c++" + }, + { + "circuit_id": "aa53da22-0b0e-4a8e-859e-fccdac3b504b", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-15T13:28:51.339Z", + "proving_scheme": "groth16", + "status": "Ready", + "compute_time": "P0DT00H00M07.705618S", + "compute_times": { + "total": 7.775683760643005, + "queued": 17.802545, + "clean_up": 0.0016981493681669235, + "create_cpp": 0.04159858077764511, + "file_setup": 0.2633522041141987, + "compile_cpp": 4.702255232259631, + "create_r1cs": 0.016227660700678825, + "save_results": 0.006025375798344612, + "get_r1cs_info": 0.0004564579576253891, + "groth16_setup": 1.386870777234435, + "export_verification_key": 1.355175631120801, + "download_trusted_setup_file": 0.0015500187873840332 + }, + "file_sizes": { + "total": 225420, + "circuit": 213240, + "total_gb": 0.00022542, + "total_mb": 0.22542, + "circuit.dat": 6176, + "code.tar.gz": 499, + "circuit.zkey": 2580, + "verification_key": 2925 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", + "Model:": "85", + "CPU(s):": "96", + "BogoMIPS:": "5400.00", + "L2 cache:": "48 MiB (48 instances)", + "L3 cache:": "66 MiB (2 instances)", + "Stepping:": "4", + "L1d cache:": "1.5 MiB (48 instances)", + "L1i cache:": "1.5 MiB (48 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "46 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", + "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", + "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Core(s) per socket:": "24", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", + "On-line CPU(s) list:": "0,1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41-49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89-95", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88", + "Vulnerability Meltdown:": "Mitigation; PTI", + "Vulnerability Retbleed:": "Mitigation; IBRS", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", + "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": 0, + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0, + "num_wires": 4, + "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", + "witness_compiler": "c++" + }, + { + "circuit_id": "24294db3-7afa-418b-bf0d-1243f5886a87", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-15T13:28:50.820Z", + "proving_scheme": "groth16", + "status": "Ready", + "compute_time": "P0DT00H00M07.571579S", + "compute_times": { + "total": 7.648920483887196, + "queued": 9.579982, + "clean_up": 0.0016354341059923172, + "create_cpp": 0.04483112692832947, + "file_setup": 0.25358958914875984, + "compile_cpp": 4.433619428426027, + "create_r1cs": 0.015889232978224754, + "save_results": 0.02785000577569008, + "get_r1cs_info": 0.0006279703229665756, + "groth16_setup": 1.4690972827374935, + "export_verification_key": 1.3993326891213655, + "download_trusted_setup_file": 0.00199044868350029 + }, + "file_sizes": { + "total": 225450, + "circuit": 213240, + "total_gb": 0.00022545, + "total_mb": 0.22545, + "circuit.dat": 6176, + "code.tar.gz": 529, + "circuit.zkey": 2580, + "verification_key": 2925 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tgz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", + "Model:": "85", + "CPU(s):": "96", + "BogoMIPS:": "5400.00", + "L2 cache:": "48 MiB (48 instances)", + "L3 cache:": "66 MiB (2 instances)", + "Stepping:": "4", + "L1d cache:": "1.5 MiB (48 instances)", + "L1i cache:": "1.5 MiB (48 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "46 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", + "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", + "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Core(s) per socket:": "24", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", + "On-line CPU(s) list:": "0,1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41-49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89-95", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88", + "Vulnerability Meltdown:": "Mitigation; PTI", + "Vulnerability Retbleed:": "Mitigation; IBRS", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", + "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": 0, + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0, + "num_wires": 4, + "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", + "witness_compiler": "c++" + }, + { + "circuit_id": "d277da2b-a725-479a-a7b5-45d7faaade8c", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-15T13:28:50.187Z", + "proving_scheme": "groth16", + "status": "Ready", + "compute_time": "P0DT00H00M07.506613S", + "compute_times": { + "total": 7.5880236234515905, + "queued": 1.494971, + "clean_up": 0.001649005338549614, + "create_cpp": 0.0485001876950264, + "file_setup": 0.2546906843781471, + "compile_cpp": 4.532622603699565, + "create_r1cs": 0.017625445500016212, + "save_results": 0.006649702787399292, + "get_r1cs_info": 0.000700976699590683, + "groth16_setup": 1.304074052721262, + "export_verification_key": 1.4185661766678095, + "download_trusted_setup_file": 0.0024695247411727905 + }, + "file_sizes": { + "total": 225418, + "circuit": 213240, + "total_gb": 0.000225418, + "total_mb": 0.225418, + "circuit.dat": 6176, + "code.tar.gz": 497, + "circuit.zkey": 2580, + "verification_key": 2925 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", + "Model:": "85", + "CPU(s):": "96", + "BogoMIPS:": "5400.00", + "L2 cache:": "48 MiB (48 instances)", + "L3 cache:": "66 MiB (2 instances)", + "Stepping:": "4", + "L1d cache:": "1.5 MiB (48 instances)", + "L1i cache:": "1.5 MiB (48 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "46 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", + "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", + "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Core(s) per socket:": "24", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", + "On-line CPU(s) list:": "0,1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41-49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89-95", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88", + "Vulnerability Meltdown:": "Mitigation; PTI", + "Vulnerability Retbleed:": "Mitigation; IBRS", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", + "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": 0, + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0, + "num_wires": 4, + "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", + "witness_compiler": "c++" + }, + { + "circuit_id": "7e87dad2-322f-4d95-8e15-98ae32d5b826", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-15T12:57:14.415Z", + "proving_scheme": "groth16", + "status": "Ready", + "compute_time": "P0DT00H00M09.377530S", + "compute_times": { + "total": 9.451860029250383, + "queued": 40.689702, + "clean_up": 0.0017610322684049606, + "create_cpp": 0.039578983560204506, + "file_setup": 0.24412750452756882, + "compile_cpp": 6.24841209128499, + "create_r1cs": 0.009235382080078125, + "save_results": 0.006292244419455528, + "get_r1cs_info": 0.000551098957657814, + "groth16_setup": 1.5359418783336878, + "export_verification_key": 1.3637649361044168, + "download_trusted_setup_file": 0.0016706939786672592 + }, + "file_sizes": { + "total": 225418, + "circuit": 213240, + "total_gb": 0.000225418, + "total_mb": 0.225418, + "circuit.dat": 6176, + "code.tar.gz": 497, + "circuit.zkey": 2580, + "verification_key": 2925 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", + "Model:": "85", + "CPU(s):": "96", + "BogoMIPS:": "5400.00", + "L2 cache:": "48 MiB (48 instances)", + "L3 cache:": "66 MiB (2 instances)", + "Stepping:": "4", + "L1d cache:": "1.5 MiB (48 instances)", + "L1i cache:": "1.5 MiB (48 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "46 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", + "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", + "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Core(s) per socket:": "24", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", + "On-line CPU(s) list:": "0,1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41-49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89-95", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88", + "Vulnerability Meltdown:": "Mitigation; PTI", + "Vulnerability Retbleed:": "Mitigation; IBRS", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", + "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": 0, + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0, + "num_wires": 4, + "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", + "witness_compiler": "c++" + }, + { + "circuit_id": "4a19fd18-26a5-4539-8450-fdc3c57ed2e6", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-15T12:57:13.901Z", + "proving_scheme": "groth16", + "status": "Ready", + "compute_time": "P0DT00H00M08.557773S", + "compute_times": { + "total": 8.646001007407904, + "queued": 40.098382, + "clean_up": 0.0008681099861860275, + "create_cpp": 0.04919867962598801, + "file_setup": 0.2636448033154011, + "compile_cpp": 5.393070332705975, + "create_r1cs": 0.01822390779852867, + "save_results": 0.004401525482535362, + "get_r1cs_info": 0.0008187666535377502, + "groth16_setup": 1.5381991360336542, + "export_verification_key": 1.3743581157177687, + "download_trusted_setup_file": 0.0025259219110012054 + }, + "file_sizes": { + "total": 225418, + "circuit": 213240, + "total_gb": 0.000225418, + "total_mb": 0.225418, + "circuit.dat": 6176, + "code.tar.gz": 497, + "circuit.zkey": 2580, + "verification_key": 2925 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", + "Model:": "85", + "CPU(s):": "96", + "BogoMIPS:": "5400.00", + "L2 cache:": "48 MiB (48 instances)", + "L3 cache:": "66 MiB (2 instances)", + "Stepping:": "4", + "L1d cache:": "1.5 MiB (48 instances)", + "L1i cache:": "1.5 MiB (48 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "46 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", + "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", + "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Core(s) per socket:": "24", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", + "On-line CPU(s) list:": "0,1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41-49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89-95", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88", + "Vulnerability Meltdown:": "Mitigation; PTI", + "Vulnerability Retbleed:": "Mitigation; IBRS", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", + "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": 0, + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0, + "num_wires": 4, + "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", + "witness_compiler": "c++" + }, + { + "circuit_id": "dc8d2ea3-558f-464b-88ef-4bfa06fa618e", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-15T12:57:13.697Z", + "proving_scheme": "groth16", + "status": "Ready", + "compute_time": "P0DT00H00M08.013795S", + "compute_times": { + "total": 8.088545773178339, + "queued": 40.279611, + "clean_up": 0.0012215152382850647, + "create_cpp": 0.05022146739065647, + "file_setup": 0.26072706654667854, + "compile_cpp": 5.073584912344813, + "create_r1cs": 0.01825350522994995, + "save_results": 0.004272386431694031, + "get_r1cs_info": 0.0007919874042272568, + "groth16_setup": 1.3669961635023355, + "export_verification_key": 1.3096041847020388, + "download_trusted_setup_file": 0.0024598315358161926 + }, + "file_sizes": { + "total": 225418, + "circuit": 213240, + "total_gb": 0.000225418, + "total_mb": 0.225418, + "circuit.dat": 6176, + "code.tar.gz": 497, + "circuit.zkey": 2580, + "verification_key": 2925 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", + "Model:": "85", + "CPU(s):": "96", + "BogoMIPS:": "5400.00", + "L2 cache:": "48 MiB (48 instances)", + "L3 cache:": "66 MiB (2 instances)", + "Stepping:": "4", + "L1d cache:": "1.5 MiB (48 instances)", + "L1i cache:": "1.5 MiB (48 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "46 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", + "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", + "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Core(s) per socket:": "24", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", + "On-line CPU(s) list:": "0,1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41-49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89-95", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88", + "Vulnerability Meltdown:": "Mitigation; PTI", + "Vulnerability Retbleed:": "Mitigation; IBRS", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", + "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": 0, + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0, + "num_wires": 4, + "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", + "witness_compiler": "c++" + }, + { + "circuit_id": "b0811776-3cbb-4f04-91fa-77ff7816010c", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-15T12:57:13.508Z", + "proving_scheme": "groth16", + "status": "Ready", + "compute_time": "P0DT00H00M08.156157S", + "compute_times": { + "total": 8.234552638605237, + "queued": 37.671742, + "clean_up": 0.001722807064652443, + "create_cpp": 0.04674012400209904, + "file_setup": 0.24939687177538872, + "compile_cpp": 5.042005067691207, + "create_r1cs": 0.018849780783057213, + "save_results": 0.0057501643896102905, + "get_r1cs_info": 0.0007910709828138351, + "groth16_setup": 1.4699617084115744, + "export_verification_key": 1.396314723417163, + "download_trusted_setup_file": 0.002504836767911911 + }, + "file_sizes": { + "total": 225418, + "circuit": 213240, + "total_gb": 0.000225418, + "total_mb": 0.225418, + "circuit.dat": 6176, + "code.tar.gz": 497, + "circuit.zkey": 2580, + "verification_key": 2925 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", + "Model:": "85", + "CPU(s):": "96", + "BogoMIPS:": "5400.00", + "L2 cache:": "48 MiB (48 instances)", + "L3 cache:": "66 MiB (2 instances)", + "Stepping:": "4", + "L1d cache:": "1.5 MiB (48 instances)", + "L1i cache:": "1.5 MiB (48 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "46 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", + "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", + "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Core(s) per socket:": "24", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", + "On-line CPU(s) list:": "0,1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41-49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89-95", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88", + "Vulnerability Meltdown:": "Mitigation; PTI", + "Vulnerability Retbleed:": "Mitigation; IBRS", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", + "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": 0, + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0, + "num_wires": 4, + "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", + "witness_compiler": "c++" + }, + { + "circuit_id": "f6935d07-74b9-4eaa-917a-dd40eb8c3eb5", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-15T12:57:13.072Z", + "proving_scheme": "groth16", + "status": "Ready", + "compute_time": "P0DT00H00M08.484689S", + "compute_times": { + "total": 8.550514187663794, + "queued": 35.796557, + "clean_up": 0.001462932676076889, + "create_cpp": 0.04712385684251785, + "file_setup": 0.22329718619585037, + "compile_cpp": 5.446879722177982, + "create_r1cs": 0.01579388603568077, + "save_results": 0.012278709560632706, + "get_r1cs_info": 0.0005889721214771271, + "groth16_setup": 1.4639050755649805, + "export_verification_key": 1.3370745498687029, + "download_trusted_setup_file": 0.001513822004199028 + }, + "file_sizes": { + "total": 225450, + "circuit": 213240, + "total_gb": 0.00022545, + "total_mb": 0.22545, + "circuit.dat": 6176, + "code.tar.gz": 529, + "circuit.zkey": 2580, + "verification_key": 2925 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tgz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", + "Model:": "85", + "CPU(s):": "96", + "BogoMIPS:": "5400.00", + "L2 cache:": "48 MiB (48 instances)", + "L3 cache:": "66 MiB (2 instances)", + "Stepping:": "4", + "L1d cache:": "1.5 MiB (48 instances)", + "L1i cache:": "1.5 MiB (48 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "46 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", + "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", + "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Core(s) per socket:": "24", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", + "On-line CPU(s) list:": "0,1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41-49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89-95", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88", + "Vulnerability Meltdown:": "Mitigation; PTI", + "Vulnerability Retbleed:": "Mitigation; IBRS", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", + "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": 0, + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0, + "num_wires": 4, + "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", + "witness_compiler": "c++" + }, + { + "circuit_id": "f8e982ba-0f45-445f-8080-31e81ea66636", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-15T12:57:12.326Z", + "proving_scheme": "groth16", + "status": "Ready", + "compute_time": "P0DT00H00M07.840774S", + "compute_times": { + "total": 7.925517087802291, + "queued": 33.768323, + "clean_up": 0.0019125081598758698, + "create_cpp": 0.0470704510807991, + "file_setup": 0.25080676563084126, + "compile_cpp": 4.833130354061723, + "create_r1cs": 0.017199259251356125, + "save_results": 0.0060319844633340836, + "get_r1cs_info": 0.0008542612195014954, + "groth16_setup": 1.3945932500064373, + "export_verification_key": 1.3710776213556528, + "download_trusted_setup_file": 0.002456527203321457 + }, + "file_sizes": { + "total": 225450, + "circuit": 213240, + "total_gb": 0.00022545, + "total_mb": 0.22545, + "circuit.dat": 6176, + "code.tar.gz": 529, + "circuit.zkey": 2580, + "verification_key": 2925 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tgz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", + "Model:": "85", + "CPU(s):": "96", + "BogoMIPS:": "5400.00", + "L2 cache:": "48 MiB (48 instances)", + "L3 cache:": "66 MiB (2 instances)", + "Stepping:": "4", + "L1d cache:": "1.5 MiB (48 instances)", + "L1i cache:": "1.5 MiB (48 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "46 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", + "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", + "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Core(s) per socket:": "24", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", + "On-line CPU(s) list:": "0,1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41-49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89-95", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88", + "Vulnerability Meltdown:": "Mitigation; PTI", + "Vulnerability Retbleed:": "Mitigation; IBRS", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", + "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": 0, + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0, + "num_wires": 4, + "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", + "witness_compiler": "c++" + }, + { + "circuit_id": "946b487f-afc3-4bce-aaae-aa306a76c11e", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-15T12:57:12.265Z", + "proving_scheme": "groth16", + "status": "Ready", + "compute_time": "P0DT00H00M07.802354S", + "compute_times": { + "total": 7.876622410491109, + "queued": 32.510341, + "clean_up": 0.0016722455620765686, + "create_cpp": 0.047051187604665756, + "file_setup": 0.24521219171583652, + "compile_cpp": 4.761473456397653, + "create_r1cs": 0.01887539029121399, + "save_results": 0.005280636250972748, + "get_r1cs_info": 0.0006754584610462189, + "groth16_setup": 1.3808959163725376, + "export_verification_key": 1.4123545419424772, + "download_trusted_setup_file": 0.0024936143308877945 + }, + "file_sizes": { + "total": 225450, + "circuit": 213240, + "total_gb": 0.00022545, + "total_mb": 0.22545, + "circuit.dat": 6176, + "code.tar.gz": 529, + "circuit.zkey": 2580, + "verification_key": 2925 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tgz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", + "Model:": "85", + "CPU(s):": "96", + "BogoMIPS:": "5400.00", + "L2 cache:": "48 MiB (48 instances)", + "L3 cache:": "66 MiB (2 instances)", + "Stepping:": "4", + "L1d cache:": "1.5 MiB (48 instances)", + "L1i cache:": "1.5 MiB (48 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "46 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", + "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", + "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Core(s) per socket:": "24", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", + "On-line CPU(s) list:": "0,1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41-49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89-95", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88", + "Vulnerability Meltdown:": "Mitigation; PTI", + "Vulnerability Retbleed:": "Mitigation; IBRS", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", + "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": 0, + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0, + "num_wires": 4, + "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", + "witness_compiler": "c++" + }, + { + "circuit_id": "39a7d49d-2aa4-42f5-bad7-41fa853c5400", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-15T12:57:12.235Z", + "proving_scheme": "groth16", + "status": "Ready", + "compute_time": "P0DT00H00M07.715939S", + "compute_times": { + "total": 7.792726593092084, + "queued": 27.774632, + "clean_up": 0.0008173845708370209, + "create_cpp": 0.04740807227790356, + "file_setup": 0.24712751060724258, + "compile_cpp": 4.673818884417415, + "create_r1cs": 0.01585347205400467, + "save_results": 0.005448015406727791, + "get_r1cs_info": 0.0006210263818502426, + "groth16_setup": 1.4341732878237963, + "export_verification_key": 1.3649929203093052, + "download_trusted_setup_file": 0.001871241256594658 + }, + "file_sizes": { + "total": 225450, + "circuit": 213240, + "total_gb": 0.00022545, + "total_mb": 0.22545, + "circuit.dat": 6176, + "code.tar.gz": 529, + "circuit.zkey": 2580, + "verification_key": 2925 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tgz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", + "Model:": "85", + "CPU(s):": "96", + "BogoMIPS:": "5400.00", + "L2 cache:": "48 MiB (48 instances)", + "L3 cache:": "66 MiB (2 instances)", + "Stepping:": "4", + "L1d cache:": "1.5 MiB (48 instances)", + "L1i cache:": "1.5 MiB (48 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "46 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", + "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", + "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Core(s) per socket:": "24", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", + "On-line CPU(s) list:": "0,1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41-49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89-95", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88", + "Vulnerability Meltdown:": "Mitigation; PTI", + "Vulnerability Retbleed:": "Mitigation; IBRS", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", + "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": 0, + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0, + "num_wires": 4, + "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", + "witness_compiler": "c++" + }, + { + "circuit_id": "a8fe6c7b-48d4-4d31-9357-d7d9a184b933", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-15T12:57:11.316Z", + "proving_scheme": "groth16", + "status": "Ready", + "compute_time": "P0DT00H00M08.241682S", + "compute_times": { + "total": 8.319445628672838, + "queued": 25.35184, + "clean_up": 0.0016656406223773956, + "create_cpp": 0.047069305554032326, + "file_setup": 0.24678357504308224, + "compile_cpp": 5.164380734786391, + "create_r1cs": 0.017509033903479576, + "save_results": 0.0056435465812683105, + "get_r1cs_info": 0.000514056533575058, + "groth16_setup": 1.471221825107932, + "export_verification_key": 1.3627644162625074, + "download_trusted_setup_file": 0.001434769481420517 + }, + "file_sizes": { + "total": 225420, + "circuit": 213240, + "total_gb": 0.00022542, + "total_mb": 0.22542, + "circuit.dat": 6176, + "code.tar.gz": 499, + "circuit.zkey": 2580, + "verification_key": 2925 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", + "Model:": "85", + "CPU(s):": "96", + "BogoMIPS:": "5400.00", + "L2 cache:": "48 MiB (48 instances)", + "L3 cache:": "66 MiB (2 instances)", + "Stepping:": "4", + "L1d cache:": "1.5 MiB (48 instances)", + "L1i cache:": "1.5 MiB (48 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "46 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", + "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", + "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Core(s) per socket:": "24", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", + "On-line CPU(s) list:": "0,1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41-49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89-95", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88", + "Vulnerability Meltdown:": "Mitigation; PTI", + "Vulnerability Retbleed:": "Mitigation; IBRS", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", + "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": 0, + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0, + "num_wires": 4, + "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", + "witness_compiler": "c++" + }, + { + "circuit_id": "8dd11963-c9e5-4610-b47e-06e1a6721b7b", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-15T12:57:11.310Z", + "proving_scheme": "groth16", + "status": "Ready", + "compute_time": "P0DT00H00M07.516111S", + "compute_times": { + "total": 7.592797514051199, + "queued": 16.636252, + "clean_up": 0.00167083740234375, + "create_cpp": 0.05534513108432293, + "file_setup": 0.24897748976945877, + "compile_cpp": 4.495417779311538, + "create_r1cs": 0.01559985987842083, + "save_results": 0.005447791889309883, + "get_r1cs_info": 0.0003331173211336136, + "groth16_setup": 1.3702464755624533, + "export_verification_key": 1.3981607723981142, + "download_trusted_setup_file": 0.0010023191571235657 + }, + "file_sizes": { + "total": 225418, + "circuit": 213240, + "total_gb": 0.000225418, + "total_mb": 0.225418, + "circuit.dat": 6176, + "code.tar.gz": 497, + "circuit.zkey": 2580, + "verification_key": 2925 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", + "Model:": "85", + "CPU(s):": "96", + "BogoMIPS:": "5400.00", + "L2 cache:": "48 MiB (48 instances)", + "L3 cache:": "66 MiB (2 instances)", + "Stepping:": "4", + "L1d cache:": "1.5 MiB (48 instances)", + "L1i cache:": "1.5 MiB (48 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "46 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", + "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", + "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Core(s) per socket:": "24", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", + "On-line CPU(s) list:": "0,1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41-49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89-95", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88", + "Vulnerability Meltdown:": "Mitigation; PTI", + "Vulnerability Retbleed:": "Mitigation; IBRS", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", + "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": 0, + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0, + "num_wires": 4, + "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", + "witness_compiler": "c++" + }, + { + "circuit_id": "17fa8218-c2f7-4e58-9490-ab5f57ec84cf", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-15T02:08:13.061Z", + "proving_scheme": "groth16", + "status": "Ready", + "compute_time": "P0DT00H00M07.636293S", + "compute_times": { + "total": 7.71372976899147, + "queued": 15.303177, + "clean_up": 0.0018192771822214127, + "create_cpp": 0.04809073731303215, + "file_setup": 0.2711461931467056, + "compile_cpp": 4.684678319841623, + "create_r1cs": 0.010924961417913437, + "save_results": 0.005295315757393837, + "get_r1cs_info": 0.0006762687116861343, + "groth16_setup": 1.3283091206103563, + "export_verification_key": 1.359778843820095, + "download_trusted_setup_file": 0.00243326835334301 + }, + "file_sizes": { + "total": 225418, + "circuit": 213240, + "total_gb": 0.000225418, + "total_mb": 0.225418, + "circuit.dat": 6176, + "code.tar.gz": 497, + "circuit.zkey": 2580, + "verification_key": 2925 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", + "Model:": "85", + "CPU(s):": "96", + "BogoMIPS:": "5400.00", + "L2 cache:": "48 MiB (48 instances)", + "L3 cache:": "66 MiB (2 instances)", + "Stepping:": "4", + "L1d cache:": "1.5 MiB (48 instances)", + "L1i cache:": "1.5 MiB (48 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "46 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", + "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", + "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Core(s) per socket:": "24", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", + "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", + "Vulnerability Meltdown:": "Mitigation; PTI", + "Vulnerability Retbleed:": "Mitigation; IBRS", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", + "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": 0, + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0, + "num_wires": 4, + "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", + "witness_compiler": "c++" + }, + { + "circuit_id": "4803fbe7-94df-4450-862e-222f380aa951", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-15T02:08:12.338Z", + "proving_scheme": "groth16", + "status": "Ready", + "compute_time": "P0DT00H00M04.673188S", + "compute_times": { + "total": 4.704905105987564, + "queued": 15.967736, + "clean_up": 0.0005092429928481579, + "create_cpp": 0.030301433987915516, + "file_setup": 0.17748972598928958, + "compile_cpp": 2.933968245051801, + "create_r1cs": 0.005270819994620979, + "save_results": 0.0024895829847082496, + "get_r1cs_info": 0.0002773590385913849, + "groth16_setup": 0.7643708229297772, + "export_verification_key": 0.7893407850060612, + "download_trusted_setup_file": 0.0007287419866770506 + }, + "file_sizes": { + "total": 225418, + "circuit": 213240, + "total_gb": 0.000225418, + "total_mb": 0.225418, + "circuit.dat": 6176, + "code.tar.gz": 497, + "circuit.zkey": 2580, + "verification_key": 2925 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf tsc_known_freq pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cat_l2 cdp_l3 invpcid_single intel_ppin cdp_l2 ssbd mba ibrs ibpb stibp ibrs_enhanced tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 avx2 smep bmi2 erms invpcid cqm rdt_a avx512f avx512dq rdseed adx smap avx512ifma clflushopt clwb intel_pt avx512cd sha_ni avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local split_lock_detect avx_vnni avx512_bf16 wbnoinvd dtherm ida arat pln pts hwp hwp_act_window hwp_epp hwp_pkg_req hfi avx512vbmi umip pku ospke waitpkg avx512_vbmi2 gfni vaes vpclmulqdq avx512_vnni avx512_bitalg tme avx512_vpopcntdq la57 rdpid bus_lock_detect cldemote movdiri movdir64b enqcmd fsrm md_clear serialize tsxldtrk pconfig arch_lbr ibt amx_bf16 avx512_fp16 amx_tile amx_int8 flush_l1d arch_capabilities", + "Model:": "143", + "CPU(s):": "128", + "BogoMIPS:": "5600.00", + "L2 cache:": "128 MiB (64 instances)", + "L3 cache:": "120 MiB (2 instances)", + "Stepping:": "7", + "L1d cache:": "3 MiB (64 instances)", + "L1i cache:": "2 MiB (64 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8462Y+", + "CPU max MHz:": "4100.0000", + "CPU min MHz:": "800.0000", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "52 bits physical, 57 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0-31,64-95", + "NUMA node1 CPU(s):": "32-63,96-127", + "Vulnerability Mds:": "Not affected", + "Core(s) per socket:": "32", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Not affected", + "On-line CPU(s) list:": "0,5-64,69-127", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "1-4,65-68", + "Vulnerability Meltdown:": "Not affected", + "Vulnerability Retbleed:": "Not affected", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; Enhanced IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS SW sequence", + "Vulnerability Itlb multihit:": "Not affected", + "Vulnerability Mmio stale data:": "Not affected", + "Vulnerability Tsx async abort:": "Not affected", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": 0, + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0, + "num_wires": 4, + "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", + "witness_compiler": "c++" + }, + { + "circuit_id": "12ae269c-cfa3-4132-ba3e-c623ce2e22c8", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-15T02:08:12.206Z", + "proving_scheme": "groth16", + "status": "Ready", + "compute_time": "P0DT00H00M07.807982S", + "compute_times": { + "total": 7.882879471406341, + "queued": 8.13048, + "clean_up": 0.0016283374279737473, + "create_cpp": 0.0489681139588356, + "file_setup": 0.2604731395840645, + "compile_cpp": 4.725069401785731, + "create_r1cs": 0.01646772027015686, + "save_results": 0.005680175498127937, + "get_r1cs_info": 0.0007954202592372894, + "groth16_setup": 1.4267123583704233, + "export_verification_key": 1.3941872529685497, + "download_trusted_setup_file": 0.0024522673338651657 + }, + "file_sizes": { + "total": 225418, + "circuit": 213240, + "total_gb": 0.000225418, + "total_mb": 0.225418, + "circuit.dat": 6176, + "code.tar.gz": 497, + "circuit.zkey": 2580, + "verification_key": 2925 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", + "Model:": "85", + "CPU(s):": "96", + "BogoMIPS:": "5400.00", + "L2 cache:": "48 MiB (48 instances)", + "L3 cache:": "66 MiB (2 instances)", + "Stepping:": "4", + "L1d cache:": "1.5 MiB (48 instances)", + "L1i cache:": "1.5 MiB (48 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "46 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", + "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", + "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Core(s) per socket:": "24", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", + "On-line CPU(s) list:": "0,1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41-49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89-95", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88", + "Vulnerability Meltdown:": "Mitigation; PTI", + "Vulnerability Retbleed:": "Mitigation; IBRS", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", + "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": 0, + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0, + "num_wires": 4, + "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", + "witness_compiler": "c++" + }, + { + "circuit_id": "384650aa-8967-4250-af2a-7314d45d6a9e", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-15T02:08:12.153Z", + "proving_scheme": "groth16", + "status": "Ready", + "compute_time": "P0DT00H00M07.684574S", + "compute_times": { + "total": 7.763364655897021, + "queued": 8.156539, + "clean_up": 0.0008707121014595032, + "create_cpp": 0.04779571294784546, + "file_setup": 0.26266710832715034, + "compile_cpp": 4.542561935260892, + "create_r1cs": 0.049717847257852554, + "save_results": 0.0047896187752485275, + "get_r1cs_info": 0.0007063969969749451, + "groth16_setup": 1.432243825867772, + "export_verification_key": 1.4190982822328806, + "download_trusted_setup_file": 0.0024577490985393524 + }, + "file_sizes": { + "total": 225418, + "circuit": 213240, + "total_gb": 0.000225418, + "total_mb": 0.225418, + "circuit.dat": 6176, + "code.tar.gz": 497, + "circuit.zkey": 2580, + "verification_key": 2925 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", + "Model:": "85", + "CPU(s):": "96", + "BogoMIPS:": "5400.00", + "L2 cache:": "48 MiB (48 instances)", + "L3 cache:": "66 MiB (2 instances)", + "Stepping:": "4", + "L1d cache:": "1.5 MiB (48 instances)", + "L1i cache:": "1.5 MiB (48 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "46 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", + "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", + "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Core(s) per socket:": "24", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", + "On-line CPU(s) list:": "0,1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41-49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89-95", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88", + "Vulnerability Meltdown:": "Mitigation; PTI", + "Vulnerability Retbleed:": "Mitigation; IBRS", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", + "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": 0, + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0, + "num_wires": 4, + "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", + "witness_compiler": "c++" + }, + { + "circuit_id": "fda87f7f-c3ec-4f10-948e-d033331c76c9", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-15T02:08:11.234Z", + "proving_scheme": "groth16", + "status": "Ready", + "compute_time": "P0DT00H00M04.668960S", + "compute_times": { + "total": 4.70031307998579, + "queued": 7.067504, + "clean_up": 0.0005026600556448102, + "create_cpp": 0.030464475974440575, + "file_setup": 0.18320538906846195, + "compile_cpp": 2.9281170460162684, + "create_r1cs": 0.00510658894199878, + "save_results": 0.002476120018400252, + "get_r1cs_info": 0.00033819000236690044, + "groth16_setup": 0.7497855660039932, + "export_verification_key": 0.7994677489623427, + "download_trusted_setup_file": 0.0006945140194147825 + }, + "file_sizes": { + "total": 225450, + "circuit": 213240, + "total_gb": 0.00022545, + "total_mb": 0.22545, + "circuit.dat": 6176, + "code.tar.gz": 529, + "circuit.zkey": 2580, + "verification_key": 2925 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tgz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf tsc_known_freq pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cat_l2 cdp_l3 invpcid_single intel_ppin cdp_l2 ssbd mba ibrs ibpb stibp ibrs_enhanced tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 avx2 smep bmi2 erms invpcid cqm rdt_a avx512f avx512dq rdseed adx smap avx512ifma clflushopt clwb intel_pt avx512cd sha_ni avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local split_lock_detect avx_vnni avx512_bf16 wbnoinvd dtherm ida arat pln pts hwp hwp_act_window hwp_epp hwp_pkg_req hfi avx512vbmi umip pku ospke waitpkg avx512_vbmi2 gfni vaes vpclmulqdq avx512_vnni avx512_bitalg tme avx512_vpopcntdq la57 rdpid bus_lock_detect cldemote movdiri movdir64b enqcmd fsrm md_clear serialize tsxldtrk pconfig arch_lbr ibt amx_bf16 avx512_fp16 amx_tile amx_int8 flush_l1d arch_capabilities", + "Model:": "143", + "CPU(s):": "128", + "BogoMIPS:": "5600.00", + "L2 cache:": "128 MiB (64 instances)", + "L3 cache:": "120 MiB (2 instances)", + "Stepping:": "7", + "L1d cache:": "3 MiB (64 instances)", + "L1i cache:": "2 MiB (64 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8462Y+", + "CPU max MHz:": "4100.0000", + "CPU min MHz:": "800.0000", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "52 bits physical, 57 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0-31,64-95", + "NUMA node1 CPU(s):": "32-63,96-127", + "Vulnerability Mds:": "Not affected", + "Core(s) per socket:": "32", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Not affected", + "On-line CPU(s) list:": "0,5-64,69-127", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "1-4,65-68", + "Vulnerability Meltdown:": "Not affected", + "Vulnerability Retbleed:": "Not affected", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; Enhanced IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS SW sequence", + "Vulnerability Itlb multihit:": "Not affected", + "Vulnerability Mmio stale data:": "Not affected", + "Vulnerability Tsx async abort:": "Not affected", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": 0, + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0, + "num_wires": 4, + "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", + "witness_compiler": "c++" + }, + { + "circuit_id": "1d85f8c0-a58c-491e-9d17-4ce07902f6be", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-15T02:08:11.224Z", + "proving_scheme": "groth16", + "status": "Ready", + "compute_time": "P0DT00H00M07.392307S", + "compute_times": { + "total": 7.469517232850194, + "queued": 8.534181, + "clean_up": 0.001875605434179306, + "create_cpp": 0.053479813039302826, + "file_setup": 0.22859745100140572, + "compile_cpp": 4.603027116507292, + "create_r1cs": 0.010996641591191292, + "save_results": 0.005396205931901932, + "get_r1cs_info": 0.0006968453526496887, + "groth16_setup": 1.3165561687201262, + "export_verification_key": 1.2459994573146105, + "download_trusted_setup_file": 0.002440648153424263 + }, + "file_sizes": { + "total": 225420, + "circuit": 213240, + "total_gb": 0.00022542, + "total_mb": 0.22542, + "circuit.dat": 6176, + "code.tar.gz": 499, + "circuit.zkey": 2580, + "verification_key": 2925 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", + "Model:": "85", + "CPU(s):": "96", + "BogoMIPS:": "5400.00", + "L2 cache:": "48 MiB (48 instances)", + "L3 cache:": "66 MiB (2 instances)", + "Stepping:": "4", + "L1d cache:": "1.5 MiB (48 instances)", + "L1i cache:": "1.5 MiB (48 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "46 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", + "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", + "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Core(s) per socket:": "24", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", + "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", + "Vulnerability Meltdown:": "Mitigation; PTI", + "Vulnerability Retbleed:": "Mitigation; IBRS", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", + "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": 0, + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0, + "num_wires": 4, + "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", + "witness_compiler": "c++" + }, + { + "circuit_id": "8ce7821a-ac27-47d4-b226-4fc1757f0a30", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-15T02:08:10.585Z", + "proving_scheme": "groth16", + "status": "Ready", + "compute_time": "P0DT00H00M04.604279S", + "compute_times": { + "total": 4.635603144066408, + "queued": 0.97709, + "clean_up": 0.00047702505253255367, + "create_cpp": 0.030288457055576146, + "file_setup": 0.19134966598358005, + "compile_cpp": 2.92873600195162, + "create_r1cs": 0.005112337996251881, + "save_results": 0.003062595962546766, + "get_r1cs_info": 0.0002235310385003686, + "groth16_setup": 0.70648637204431, + "export_verification_key": 0.7690231120213866, + "download_trusted_setup_file": 0.000696779927238822 + }, + "file_sizes": { + "total": 225450, + "circuit": 213240, + "total_gb": 0.00022545, + "total_mb": 0.22545, + "circuit.dat": 6176, + "code.tar.gz": 529, + "circuit.zkey": 2580, + "verification_key": 2925 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tgz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf tsc_known_freq pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cat_l2 cdp_l3 invpcid_single intel_ppin cdp_l2 ssbd mba ibrs ibpb stibp ibrs_enhanced tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 avx2 smep bmi2 erms invpcid cqm rdt_a avx512f avx512dq rdseed adx smap avx512ifma clflushopt clwb intel_pt avx512cd sha_ni avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local split_lock_detect avx_vnni avx512_bf16 wbnoinvd dtherm ida arat pln pts hwp hwp_act_window hwp_epp hwp_pkg_req hfi avx512vbmi umip pku ospke waitpkg avx512_vbmi2 gfni vaes vpclmulqdq avx512_vnni avx512_bitalg tme avx512_vpopcntdq la57 rdpid bus_lock_detect cldemote movdiri movdir64b enqcmd fsrm md_clear serialize tsxldtrk pconfig arch_lbr ibt amx_bf16 avx512_fp16 amx_tile amx_int8 flush_l1d arch_capabilities", + "Model:": "143", + "CPU(s):": "128", + "BogoMIPS:": "5600.00", + "L2 cache:": "128 MiB (64 instances)", + "L3 cache:": "120 MiB (2 instances)", + "Stepping:": "7", + "L1d cache:": "3 MiB (64 instances)", + "L1i cache:": "2 MiB (64 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8462Y+", + "CPU max MHz:": "4100.0000", + "CPU min MHz:": "800.0000", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "52 bits physical, 57 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0-31,64-95", + "NUMA node1 CPU(s):": "32-63,96-127", + "Vulnerability Mds:": "Not affected", + "Core(s) per socket:": "32", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Not affected", + "On-line CPU(s) list:": "0,5-64,69-127", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "1-4,65-68", + "Vulnerability Meltdown:": "Not affected", + "Vulnerability Retbleed:": "Not affected", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; Enhanced IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS SW sequence", + "Vulnerability Itlb multihit:": "Not affected", + "Vulnerability Mmio stale data:": "Not affected", + "Vulnerability Tsx async abort:": "Not affected", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": 0, + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0, + "num_wires": 4, + "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", + "witness_compiler": "c++" + }, + { + "circuit_id": "57a370e8-d904-4e45-ad58-196db3d30f4d", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-15T02:08:10.148Z", + "proving_scheme": "groth16", + "status": "Ready", + "compute_time": "P0DT00H00M07.670361S", + "compute_times": { + "total": 7.7598298992961645, + "queued": 1.340101, + "clean_up": 0.0019132401794195175, + "create_cpp": 0.047642480581998825, + "file_setup": 0.28451264277100563, + "compile_cpp": 4.557841159403324, + "create_r1cs": 0.01719365455210209, + "save_results": 0.00552779994904995, + "get_r1cs_info": 0.0007379818707704544, + "groth16_setup": 1.4282774832099676, + "export_verification_key": 1.4133095126599073, + "download_trusted_setup_file": 0.002416664734482765 + }, + "file_sizes": { + "total": 225450, + "circuit": 213240, + "total_gb": 0.00022545, + "total_mb": 0.22545, + "circuit.dat": 6176, + "code.tar.gz": 529, + "circuit.zkey": 2580, + "verification_key": 2925 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tgz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", + "Model:": "85", + "CPU(s):": "96", + "BogoMIPS:": "5400.00", + "L2 cache:": "48 MiB (48 instances)", + "L3 cache:": "66 MiB (2 instances)", + "Stepping:": "4", + "L1d cache:": "1.5 MiB (48 instances)", + "L1i cache:": "1.5 MiB (48 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "46 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", + "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", + "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Core(s) per socket:": "24", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", + "On-line CPU(s) list:": "0,1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41-49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89-95", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88", + "Vulnerability Meltdown:": "Mitigation; PTI", + "Vulnerability Retbleed:": "Mitigation; IBRS", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", + "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": 0, + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0, + "num_wires": 4, + "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", + "witness_compiler": "c++" + }, + { + "circuit_id": "44c0f928-5c25-4bc0-a78f-1523c457f5af", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-15T02:08:10.140Z", + "proving_scheme": "groth16", + "status": "Ready", + "compute_time": "P0DT00H00M07.658778S", + "compute_times": { + "total": 7.742852771654725, + "queued": 1.336022, + "clean_up": 0.0016133859753608704, + "create_cpp": 0.05547862686216831, + "file_setup": 0.29617039300501347, + "compile_cpp": 4.542897034436464, + "create_r1cs": 0.017181839793920517, + "save_results": 0.0058561451733112335, + "get_r1cs_info": 0.0004195272922515869, + "groth16_setup": 1.408520732074976, + "export_verification_key": 1.4131443835794926, + "download_trusted_setup_file": 0.0012377090752124786 + }, + "file_sizes": { + "total": 225450, + "circuit": 213240, + "total_gb": 0.00022545, + "total_mb": 0.22545, + "circuit.dat": 6176, + "code.tar.gz": 529, + "circuit.zkey": 2580, + "verification_key": 2925 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tgz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", + "Model:": "85", + "CPU(s):": "96", + "BogoMIPS:": "5400.00", + "L2 cache:": "48 MiB (48 instances)", + "L3 cache:": "66 MiB (2 instances)", + "Stepping:": "4", + "L1d cache:": "1.5 MiB (48 instances)", + "L1i cache:": "1.5 MiB (48 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "46 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", + "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", + "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Core(s) per socket:": "24", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", + "On-line CPU(s) list:": "0,1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41-49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89-95", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88", + "Vulnerability Meltdown:": "Mitigation; PTI", + "Vulnerability Retbleed:": "Mitigation; IBRS", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", + "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": 0, + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0, + "num_wires": 4, + "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", + "witness_compiler": "c++" + }, + { + "circuit_id": "123f913d-504d-4246-8d29-85a68b8f685c", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-15T02:08:09.711Z", + "proving_scheme": "groth16", + "status": "Ready", + "compute_time": "P0DT00H00M07.738898S", + "compute_times": { + "total": 7.813894247636199, + "queued": 1.100992, + "clean_up": 0.0010037794709205627, + "create_cpp": 0.04616817645728588, + "file_setup": 0.24978489242494106, + "compile_cpp": 4.788679093122482, + "create_r1cs": 0.016563747078180313, + "save_results": 0.004571622237563133, + "get_r1cs_info": 0.0006682649254798889, + "groth16_setup": 1.4005869701504707, + "export_verification_key": 1.3029269501566887, + "download_trusted_setup_file": 0.0024551209062337875 + }, + "file_sizes": { + "total": 225418, + "circuit": 213240, + "total_gb": 0.000225418, + "total_mb": 0.225418, + "circuit.dat": 6176, + "code.tar.gz": 497, + "circuit.zkey": 2580, + "verification_key": 2925 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", + "Model:": "85", + "CPU(s):": "96", + "BogoMIPS:": "5400.00", + "L2 cache:": "48 MiB (48 instances)", + "L3 cache:": "66 MiB (2 instances)", + "Stepping:": "4", + "L1d cache:": "1.5 MiB (48 instances)", + "L1i cache:": "1.5 MiB (48 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "46 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", + "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", + "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Core(s) per socket:": "24", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", + "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", + "Vulnerability Meltdown:": "Mitigation; PTI", + "Vulnerability Retbleed:": "Mitigation; IBRS", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", + "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": 0, + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0, + "num_wires": 4, + "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", + "witness_compiler": "c++" + }, + { + "circuit_id": "ed55e890-c65c-4978-94c2-62c36da8309a", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-15T02:07:14.554Z", + "proving_scheme": "groth16", + "status": "Ready", + "compute_time": "P0DT00H00M04.639042S", + "compute_times": { + "total": 4.670196183025837, + "queued": 1.192037, + "clean_up": 0.0004636390367522836, + "create_cpp": 0.029885608004406095, + "file_setup": 0.19036857096944004, + "compile_cpp": 2.9288433239562437, + "create_r1cs": 0.005293185007758439, + "save_results": 0.002376335905864835, + "get_r1cs_info": 0.00021172501146793365, + "groth16_setup": 0.7855832269415259, + "export_verification_key": 0.7263032890623435, + "download_trusted_setup_file": 0.0007130390731617808 + }, + "file_sizes": { + "total": 225418, + "circuit": 213240, + "total_gb": 0.000225418, + "total_mb": 0.225418, + "circuit.dat": 6176, + "code.tar.gz": 497, + "circuit.zkey": 2580, + "verification_key": 2925 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf tsc_known_freq pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cat_l2 cdp_l3 invpcid_single intel_ppin cdp_l2 ssbd mba ibrs ibpb stibp ibrs_enhanced tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 avx2 smep bmi2 erms invpcid cqm rdt_a avx512f avx512dq rdseed adx smap avx512ifma clflushopt clwb intel_pt avx512cd sha_ni avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local split_lock_detect avx_vnni avx512_bf16 wbnoinvd dtherm ida arat pln pts hwp hwp_act_window hwp_epp hwp_pkg_req hfi avx512vbmi umip pku ospke waitpkg avx512_vbmi2 gfni vaes vpclmulqdq avx512_vnni avx512_bitalg tme avx512_vpopcntdq la57 rdpid bus_lock_detect cldemote movdiri movdir64b enqcmd fsrm md_clear serialize tsxldtrk pconfig arch_lbr ibt amx_bf16 avx512_fp16 amx_tile amx_int8 flush_l1d arch_capabilities", + "Model:": "143", + "CPU(s):": "128", + "BogoMIPS:": "5600.00", + "L2 cache:": "128 MiB (64 instances)", + "L3 cache:": "120 MiB (2 instances)", + "Stepping:": "7", + "L1d cache:": "3 MiB (64 instances)", + "L1i cache:": "2 MiB (64 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8462Y+", + "CPU max MHz:": "4100.0000", + "CPU min MHz:": "800.0000", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "52 bits physical, 57 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0-31,64-95", + "NUMA node1 CPU(s):": "32-63,96-127", + "Vulnerability Mds:": "Not affected", + "Core(s) per socket:": "32", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Not affected", + "On-line CPU(s) list:": "0,5-64,69-127", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "1-4,65-68", + "Vulnerability Meltdown:": "Not affected", + "Vulnerability Retbleed:": "Not affected", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; Enhanced IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS SW sequence", + "Vulnerability Itlb multihit:": "Not affected", + "Vulnerability Mmio stale data:": "Not affected", + "Vulnerability Tsx async abort:": "Not affected", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": 0, + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0, + "num_wires": 4, + "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", + "witness_compiler": "c++" + }, + { + "circuit_id": "f6bf151d-2fd0-488a-8dd5-f8fafee7a06b", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-15T02:07:14.087Z", + "proving_scheme": "groth16", + "status": "Ready", + "compute_time": "P0DT00H00M07.582657S", + "compute_times": { + "total": 7.672385489568114, + "queued": 1.09439, + "clean_up": 0.002001248300075531, + "create_cpp": 0.05665309727191925, + "file_setup": 0.28869662806391716, + "compile_cpp": 4.477934097871184, + "create_r1cs": 0.018961958587169647, + "save_results": 0.005625590682029724, + "get_r1cs_info": 0.0006451867520809174, + "groth16_setup": 1.400868695229292, + "export_verification_key": 1.4178343042731285, + "download_trusted_setup_file": 0.002523709088563919 + }, + "file_sizes": { + "total": 225418, + "circuit": 213240, + "total_gb": 0.000225418, + "total_mb": 0.225418, + "circuit.dat": 6176, + "code.tar.gz": 497, + "circuit.zkey": 2580, + "verification_key": 2925 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", + "Model:": "85", + "CPU(s):": "96", + "BogoMIPS:": "5400.00", + "L2 cache:": "48 MiB (48 instances)", + "L3 cache:": "66 MiB (2 instances)", + "Stepping:": "4", + "L1d cache:": "1.5 MiB (48 instances)", + "L1i cache:": "1.5 MiB (48 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "46 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", + "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", + "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Core(s) per socket:": "24", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", + "On-line CPU(s) list:": "0,1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41-49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89-95", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88", + "Vulnerability Meltdown:": "Mitigation; PTI", + "Vulnerability Retbleed:": "Mitigation; IBRS", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", + "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": 0, + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0, + "num_wires": 4, + "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", + "witness_compiler": "c++" + }, + { + "circuit_id": "1ffbe8f9-87c8-4e42-baa8-7aa33c4d17ee", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-15T02:07:13.808Z", + "proving_scheme": "groth16", + "status": "Ready", + "compute_time": "P0DT00H00M07.789518S", + "compute_times": { + "total": 7.865276617929339, + "queued": 1.233985, + "clean_up": 0.0009253527969121933, + "create_cpp": 0.057666877284646034, + "file_setup": 0.42827480658888817, + "compile_cpp": 4.4704748671501875, + "create_r1cs": 0.009908992797136307, + "save_results": 0.0053389593958854675, + "get_r1cs_info": 0.0004046596586704254, + "groth16_setup": 1.474434545263648, + "export_verification_key": 1.4163631908595562, + "download_trusted_setup_file": 0.0010532364249229431 + }, + "file_sizes": { + "total": 225418, + "circuit": 213240, + "total_gb": 0.000225418, + "total_mb": 0.225418, + "circuit.dat": 6176, + "code.tar.gz": 497, + "circuit.zkey": 2580, + "verification_key": 2925 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", + "Model:": "85", + "CPU(s):": "96", + "BogoMIPS:": "5400.00", + "L2 cache:": "48 MiB (48 instances)", + "L3 cache:": "66 MiB (2 instances)", + "Stepping:": "4", + "L1d cache:": "1.5 MiB (48 instances)", + "L1i cache:": "1.5 MiB (48 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "46 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", + "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", + "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Core(s) per socket:": "24", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", + "On-line CPU(s) list:": "0,1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41-49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89-95", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88", + "Vulnerability Meltdown:": "Mitigation; PTI", + "Vulnerability Retbleed:": "Mitigation; IBRS", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", + "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": 0, + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0, + "num_wires": 4, + "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", + "witness_compiler": "c++" + }, + { + "circuit_id": "d40bcb67-e940-4fb1-b733-5382a0d24818", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-15T02:07:13.622Z", + "proving_scheme": "groth16", + "status": "Ready", + "compute_time": "P0DT00H00M07.484271S", + "compute_times": { + "total": 7.556855067610741, + "queued": 1.163986, + "clean_up": 0.00173221156001091, + "create_cpp": 0.053104178979992867, + "file_setup": 0.25219348073005676, + "compile_cpp": 4.602972414344549, + "create_r1cs": 0.016127610579133034, + "save_results": 0.0044687893241643906, + "get_r1cs_info": 0.0006831474602222443, + "groth16_setup": 1.384469285607338, + "export_verification_key": 1.2383170630782843, + "download_trusted_setup_file": 0.002438986673951149 + }, + "file_sizes": { + "total": 225418, + "circuit": 213240, + "total_gb": 0.000225418, + "total_mb": 0.225418, + "circuit.dat": 6176, + "code.tar.gz": 497, + "circuit.zkey": 2580, + "verification_key": 2925 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", + "Model:": "85", + "CPU(s):": "96", + "BogoMIPS:": "5400.00", + "L2 cache:": "48 MiB (48 instances)", + "L3 cache:": "66 MiB (2 instances)", + "Stepping:": "4", + "L1d cache:": "1.5 MiB (48 instances)", + "L1i cache:": "1.5 MiB (48 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "46 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", + "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", + "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Core(s) per socket:": "24", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", + "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", + "Vulnerability Meltdown:": "Mitigation; PTI", + "Vulnerability Retbleed:": "Mitigation; IBRS", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", + "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": 0, + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0, + "num_wires": 4, + "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", + "witness_compiler": "c++" + }, + { + "circuit_id": "c43fd46d-1d67-4e43-9087-2fd558de038f", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-15T02:03:24.311Z", + "proving_scheme": "groth16", + "status": "Ready", + "compute_time": "P0DT00H00M07.415030S", + "compute_times": { + "total": 7.4919023886322975, + "queued": 15.399161, + "clean_up": 0.0017888862639665604, + "create_cpp": 0.04686305299401283, + "file_setup": 0.2366184201091528, + "compile_cpp": 4.676926027983427, + "create_r1cs": 0.016247382387518883, + "save_results": 0.005460144951939583, + "get_r1cs_info": 0.0005027409642934799, + "groth16_setup": 1.222083330154419, + "export_verification_key": 1.2832992672920227, + "download_trusted_setup_file": 0.001483755186200142 + }, + "file_sizes": { + "total": 225418, + "circuit": 213240, + "total_gb": 0.000225418, + "total_mb": 0.225418, + "circuit.dat": 6176, + "code.tar.gz": 497, + "circuit.zkey": 2580, + "verification_key": 2925 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", + "Model:": "85", + "CPU(s):": "96", + "BogoMIPS:": "5400.00", + "L2 cache:": "48 MiB (48 instances)", + "L3 cache:": "66 MiB (2 instances)", + "Stepping:": "4", + "L1d cache:": "1.5 MiB (48 instances)", + "L1i cache:": "1.5 MiB (48 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "46 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", + "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", + "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Core(s) per socket:": "24", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", + "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", + "Vulnerability Meltdown:": "Mitigation; PTI", + "Vulnerability Retbleed:": "Mitigation; IBRS", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", + "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": 0, + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0, + "num_wires": 4, + "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", + "witness_compiler": "c++" + }, + { + "circuit_id": "9e12ff5e-5632-46c4-9ab1-3349ec0b131e", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-15T02:03:23.911Z", + "proving_scheme": "groth16", + "status": "Ready", + "compute_time": "P0DT00H00M04.661941S", + "compute_times": { + "total": 4.693298900965601, + "queued": 14.904538, + "clean_up": 0.00046248501166701317, + "create_cpp": 0.030274335062131286, + "file_setup": 0.20949947088956833, + "compile_cpp": 2.9299584419932216, + "create_r1cs": 0.005165933980606496, + "save_results": 0.0026655279798433185, + "get_r1cs_info": 0.00022936402820050716, + "groth16_setup": 0.7548628870863467, + "export_verification_key": 0.7593056479236111, + "download_trusted_setup_file": 0.0007180699612945318 + }, + "file_sizes": { + "total": 225418, + "circuit": 213240, + "total_gb": 0.000225418, + "total_mb": 0.225418, + "circuit.dat": 6176, + "code.tar.gz": 497, + "circuit.zkey": 2580, + "verification_key": 2925 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf tsc_known_freq pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cat_l2 cdp_l3 invpcid_single intel_ppin cdp_l2 ssbd mba ibrs ibpb stibp ibrs_enhanced tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 avx2 smep bmi2 erms invpcid cqm rdt_a avx512f avx512dq rdseed adx smap avx512ifma clflushopt clwb intel_pt avx512cd sha_ni avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local split_lock_detect avx_vnni avx512_bf16 wbnoinvd dtherm ida arat pln pts hwp hwp_act_window hwp_epp hwp_pkg_req hfi avx512vbmi umip pku ospke waitpkg avx512_vbmi2 gfni vaes vpclmulqdq avx512_vnni avx512_bitalg tme avx512_vpopcntdq la57 rdpid bus_lock_detect cldemote movdiri movdir64b enqcmd fsrm md_clear serialize tsxldtrk pconfig arch_lbr ibt amx_bf16 avx512_fp16 amx_tile amx_int8 flush_l1d arch_capabilities", + "Model:": "143", + "CPU(s):": "128", + "BogoMIPS:": "5600.00", + "L2 cache:": "128 MiB (64 instances)", + "L3 cache:": "120 MiB (2 instances)", + "Stepping:": "7", + "L1d cache:": "3 MiB (64 instances)", + "L1i cache:": "2 MiB (64 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8462Y+", + "CPU max MHz:": "4100.0000", + "CPU min MHz:": "800.0000", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "52 bits physical, 57 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0-31,64-95", + "NUMA node1 CPU(s):": "32-63,96-127", + "Vulnerability Mds:": "Not affected", + "Core(s) per socket:": "32", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Not affected", + "On-line CPU(s) list:": "0,5-64,69-127", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "1-4,65-68", + "Vulnerability Meltdown:": "Not affected", + "Vulnerability Retbleed:": "Not affected", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; Enhanced IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS SW sequence", + "Vulnerability Itlb multihit:": "Not affected", + "Vulnerability Mmio stale data:": "Not affected", + "Vulnerability Tsx async abort:": "Not affected", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": 0, + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0, + "num_wires": 4, + "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", + "witness_compiler": "c++" + }, + { + "circuit_id": "a5de0eca-b376-4d33-91b6-9a30d4235aa7", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-15T02:03:23.662Z", + "proving_scheme": "groth16", + "status": "Ready", + "compute_time": "P0DT00H00M04.640504S", + "compute_times": { + "total": 4.674585030064918, + "queued": 9.563851, + "clean_up": 0.0004374060081318021, + "create_cpp": 0.029949681949801743, + "file_setup": 0.18676624703221023, + "compile_cpp": 2.926436795038171, + "create_r1cs": 0.00553747802041471, + "save_results": 0.0025256150402128696, + "get_r1cs_info": 0.00030519498977810144, + "groth16_setup": 0.74638494302053, + "export_verification_key": 0.7754071449162439, + "download_trusted_setup_file": 0.0006875250255689025 + }, + "file_sizes": { + "total": 225418, + "circuit": 213240, + "total_gb": 0.000225418, + "total_mb": 0.225418, + "circuit.dat": 6176, + "code.tar.gz": 497, + "circuit.zkey": 2580, + "verification_key": 2925 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf tsc_known_freq pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cat_l2 cdp_l3 invpcid_single intel_ppin cdp_l2 ssbd mba ibrs ibpb stibp ibrs_enhanced tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 avx2 smep bmi2 erms invpcid cqm rdt_a avx512f avx512dq rdseed adx smap avx512ifma clflushopt clwb intel_pt avx512cd sha_ni avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local split_lock_detect avx_vnni avx512_bf16 wbnoinvd dtherm ida arat pln pts hwp hwp_act_window hwp_epp hwp_pkg_req hfi avx512vbmi umip pku ospke waitpkg avx512_vbmi2 gfni vaes vpclmulqdq avx512_vnni avx512_bitalg tme avx512_vpopcntdq la57 rdpid bus_lock_detect cldemote movdiri movdir64b enqcmd fsrm md_clear serialize tsxldtrk pconfig arch_lbr ibt amx_bf16 avx512_fp16 amx_tile amx_int8 flush_l1d arch_capabilities", + "Model:": "143", + "CPU(s):": "128", + "BogoMIPS:": "5600.00", + "L2 cache:": "128 MiB (64 instances)", + "L3 cache:": "120 MiB (2 instances)", + "Stepping:": "7", + "L1d cache:": "3 MiB (64 instances)", + "L1i cache:": "2 MiB (64 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8462Y+", + "CPU max MHz:": "4100.0000", + "CPU min MHz:": "800.0000", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "52 bits physical, 57 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0-31,64-95", + "NUMA node1 CPU(s):": "32-63,96-127", + "Vulnerability Mds:": "Not affected", + "Core(s) per socket:": "32", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Not affected", + "On-line CPU(s) list:": "0,5-64,69-127", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "1-4,65-68", + "Vulnerability Meltdown:": "Not affected", + "Vulnerability Retbleed:": "Not affected", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; Enhanced IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS SW sequence", + "Vulnerability Itlb multihit:": "Not affected", + "Vulnerability Mmio stale data:": "Not affected", + "Vulnerability Tsx async abort:": "Not affected", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": 0, + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0, + "num_wires": 4, + "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", + "witness_compiler": "c++" + }, + { + "circuit_id": "3eec50d0-8bc1-4266-8506-a76961a3627d", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-15T02:03:23.403Z", + "proving_scheme": "groth16", + "status": "Ready", + "compute_time": "P0DT00H00M04.659658S", + "compute_times": { + "total": 4.6912087330129, + "queued": 0.999787, + "clean_up": 0.0005085699958726764, + "create_cpp": 0.030190049903467298, + "file_setup": 0.1714191420469433, + "compile_cpp": 2.942204582039267, + "create_r1cs": 0.0055296330247074366, + "save_results": 0.0026200800202786922, + "get_r1cs_info": 0.0003244479885324836, + "groth16_setup": 0.7581778330495581, + "export_verification_key": 0.7793734009610489, + "download_trusted_setup_file": 0.0007095789769664407 + }, + "file_sizes": { + "total": 225418, + "circuit": 213240, + "total_gb": 0.000225418, + "total_mb": 0.225418, + "circuit.dat": 6176, + "code.tar.gz": 497, + "circuit.zkey": 2580, + "verification_key": 2925 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf tsc_known_freq pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cat_l2 cdp_l3 invpcid_single intel_ppin cdp_l2 ssbd mba ibrs ibpb stibp ibrs_enhanced tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 avx2 smep bmi2 erms invpcid cqm rdt_a avx512f avx512dq rdseed adx smap avx512ifma clflushopt clwb intel_pt avx512cd sha_ni avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local split_lock_detect avx_vnni avx512_bf16 wbnoinvd dtherm ida arat pln pts hwp hwp_act_window hwp_epp hwp_pkg_req hfi avx512vbmi umip pku ospke waitpkg avx512_vbmi2 gfni vaes vpclmulqdq avx512_vnni avx512_bitalg tme avx512_vpopcntdq la57 rdpid bus_lock_detect cldemote movdiri movdir64b enqcmd fsrm md_clear serialize tsxldtrk pconfig arch_lbr ibt amx_bf16 avx512_fp16 amx_tile amx_int8 flush_l1d arch_capabilities", + "Model:": "143", + "CPU(s):": "128", + "BogoMIPS:": "5600.00", + "L2 cache:": "128 MiB (64 instances)", + "L3 cache:": "120 MiB (2 instances)", + "Stepping:": "7", + "L1d cache:": "3 MiB (64 instances)", + "L1i cache:": "2 MiB (64 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8462Y+", + "CPU max MHz:": "4100.0000", + "CPU min MHz:": "800.0000", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "52 bits physical, 57 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0-31,64-95", + "NUMA node1 CPU(s):": "32-63,96-127", + "Vulnerability Mds:": "Not affected", + "Core(s) per socket:": "32", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Not affected", + "On-line CPU(s) list:": "0,5-64,69-127", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "1-4,65-68", + "Vulnerability Meltdown:": "Not affected", + "Vulnerability Retbleed:": "Not affected", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; Enhanced IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS SW sequence", + "Vulnerability Itlb multihit:": "Not affected", + "Vulnerability Mmio stale data:": "Not affected", + "Vulnerability Tsx async abort:": "Not affected", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": 0, + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0, + "num_wires": 4, + "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", + "witness_compiler": "c++" + }, + { + "circuit_id": "596a0973-b6a7-4e8f-b6d6-9f2ddb483f02", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-15T02:01:10.696Z", + "proving_scheme": "groth16", + "status": "Ready", + "compute_time": "P0DT00H00M04.600004S", + "compute_times": { + "total": 4.634266157983802, + "queued": 1.007035, + "clean_up": 0.0004430810222402215, + "create_cpp": 0.029862282914109528, + "file_setup": 0.19106685707811266, + "compile_cpp": 2.921206888044253, + "create_r1cs": 0.005109910038299859, + "save_results": 0.003121474990621209, + "get_r1cs_info": 0.0002160179428756237, + "groth16_setup": 0.7425107170129195, + "export_verification_key": 0.7398575020488352, + "download_trusted_setup_file": 0.000722195953130722 + }, + "file_sizes": { + "total": 225418, + "circuit": 213240, + "total_gb": 0.000225418, + "total_mb": 0.225418, + "circuit.dat": 6176, + "code.tar.gz": 497, + "circuit.zkey": 2580, + "verification_key": 2925 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf tsc_known_freq pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cat_l2 cdp_l3 invpcid_single intel_ppin cdp_l2 ssbd mba ibrs ibpb stibp ibrs_enhanced tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 avx2 smep bmi2 erms invpcid cqm rdt_a avx512f avx512dq rdseed adx smap avx512ifma clflushopt clwb intel_pt avx512cd sha_ni avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local split_lock_detect avx_vnni avx512_bf16 wbnoinvd dtherm ida arat pln pts hwp hwp_act_window hwp_epp hwp_pkg_req hfi avx512vbmi umip pku ospke waitpkg avx512_vbmi2 gfni vaes vpclmulqdq avx512_vnni avx512_bitalg tme avx512_vpopcntdq la57 rdpid bus_lock_detect cldemote movdiri movdir64b enqcmd fsrm md_clear serialize tsxldtrk pconfig arch_lbr ibt amx_bf16 avx512_fp16 amx_tile amx_int8 flush_l1d arch_capabilities", + "Model:": "143", + "CPU(s):": "128", + "BogoMIPS:": "5600.00", + "L2 cache:": "128 MiB (64 instances)", + "L3 cache:": "120 MiB (2 instances)", + "Stepping:": "7", + "L1d cache:": "3 MiB (64 instances)", + "L1i cache:": "2 MiB (64 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8462Y+", + "CPU max MHz:": "4100.0000", + "CPU min MHz:": "800.0000", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "52 bits physical, 57 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0-31,64-95", + "NUMA node1 CPU(s):": "32-63,96-127", + "Vulnerability Mds:": "Not affected", + "Core(s) per socket:": "32", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Not affected", + "On-line CPU(s) list:": "0,5-64,69-127", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "1-4,65-68", + "Vulnerability Meltdown:": "Not affected", + "Vulnerability Retbleed:": "Not affected", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; Enhanced IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS SW sequence", + "Vulnerability Itlb multihit:": "Not affected", + "Vulnerability Mmio stale data:": "Not affected", + "Vulnerability Tsx async abort:": "Not affected", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": 0, + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0, + "num_wires": 4, + "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", + "witness_compiler": "c++" + }, + { + "circuit_id": "4f5b0304-a53e-45e9-b83f-8e06611dc640", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-15T01:52:29.407Z", + "proving_scheme": "groth16", + "status": "Ready", + "compute_time": "P0DT00H00M07.795432S", + "compute_times": { + "total": 7.873008634895086, + "queued": 31.342195, + "clean_up": 0.0018993616104125977, + "create_cpp": 0.055077794939279556, + "file_setup": 0.24360725842416286, + "compile_cpp": 4.703614357858896, + "create_r1cs": 0.02081167884171009, + "save_results": 0.0056080929934978485, + "get_r1cs_info": 0.0008842349052429199, + "groth16_setup": 1.4346165657043457, + "export_verification_key": 1.4034891910851002, + "download_trusted_setup_file": 0.002933880314230919 + }, + "file_sizes": { + "total": 225418, + "circuit": 213240, + "total_gb": 0.000225418, + "total_mb": 0.225418, + "circuit.dat": 6176, + "code.tar.gz": 497, + "circuit.zkey": 2580, + "verification_key": 2925 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", + "Model:": "85", + "CPU(s):": "96", + "BogoMIPS:": "5400.00", + "L2 cache:": "48 MiB (48 instances)", + "L3 cache:": "66 MiB (2 instances)", + "Stepping:": "4", + "L1d cache:": "1.5 MiB (48 instances)", + "L1i cache:": "1.5 MiB (48 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "46 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", + "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", + "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Core(s) per socket:": "24", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", + "On-line CPU(s) list:": "0,1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41-49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89-95", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88", + "Vulnerability Meltdown:": "Mitigation; PTI", + "Vulnerability Retbleed:": "Mitigation; IBRS", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", + "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": 0, + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0, + "num_wires": 4, + "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", + "witness_compiler": "c++" + }, + { + "circuit_id": "64c8849e-21b2-46a5-8786-87d5fe82f4d6", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-15T01:52:28.573Z", + "proving_scheme": "groth16", + "status": "Ready", + "compute_time": "P0DT00H00M07.741476S", + "compute_times": { + "total": 7.819348992779851, + "queued": 31.913431, + "clean_up": 0.0019285250455141068, + "create_cpp": 0.04896355792880058, + "file_setup": 0.23411452770233154, + "compile_cpp": 4.654933050274849, + "create_r1cs": 0.016990680247545242, + "save_results": 0.005897335708141327, + "get_r1cs_info": 0.0007398743182420731, + "groth16_setup": 1.392984814941883, + "export_verification_key": 1.4599114395678043, + "download_trusted_setup_file": 0.0024141818284988403 + }, + "file_sizes": { + "total": 225418, + "circuit": 213240, + "total_gb": 0.000225418, + "total_mb": 0.225418, + "circuit.dat": 6176, + "code.tar.gz": 497, + "circuit.zkey": 2580, + "verification_key": 2925 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", + "Model:": "85", + "CPU(s):": "96", + "BogoMIPS:": "5400.00", + "L2 cache:": "48 MiB (48 instances)", + "L3 cache:": "66 MiB (2 instances)", + "Stepping:": "4", + "L1d cache:": "1.5 MiB (48 instances)", + "L1i cache:": "1.5 MiB (48 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "46 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", + "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", + "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Core(s) per socket:": "24", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", + "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", + "Vulnerability Meltdown:": "Mitigation; PTI", + "Vulnerability Retbleed:": "Mitigation; IBRS", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", + "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": 0, + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0, + "num_wires": 4, + "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", + "witness_compiler": "c++" + }, + { + "circuit_id": "696b5f3c-ac4c-4c88-a40a-7b8d5239cb47", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-15T01:52:28.552Z", + "proving_scheme": "groth16", + "status": "Ready", + "compute_time": "P0DT00H00M04.657088S", + "compute_times": { + "total": 4.6882268759654835, + "queued": 29.904162, + "clean_up": 0.0004538500215858221, + "create_cpp": 0.029869360965676606, + "file_setup": 0.18104861094616354, + "compile_cpp": 2.9436706830747426, + "create_r1cs": 0.005239389953203499, + "save_results": 0.0024021610151976347, + "get_r1cs_info": 0.00020038604270666838, + "groth16_setup": 0.762411353061907, + "export_verification_key": 0.7620555579196662, + "download_trusted_setup_file": 0.0007234419463202357 + }, + "file_sizes": { + "total": 225418, + "circuit": 213240, + "total_gb": 0.000225418, + "total_mb": 0.225418, + "circuit.dat": 6176, + "code.tar.gz": 497, + "circuit.zkey": 2580, + "verification_key": 2925 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf tsc_known_freq pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cat_l2 cdp_l3 invpcid_single intel_ppin cdp_l2 ssbd mba ibrs ibpb stibp ibrs_enhanced tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 avx2 smep bmi2 erms invpcid cqm rdt_a avx512f avx512dq rdseed adx smap avx512ifma clflushopt clwb intel_pt avx512cd sha_ni avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local split_lock_detect avx_vnni avx512_bf16 wbnoinvd dtherm ida arat pln pts hwp hwp_act_window hwp_epp hwp_pkg_req hfi avx512vbmi umip pku ospke waitpkg avx512_vbmi2 gfni vaes vpclmulqdq avx512_vnni avx512_bitalg tme avx512_vpopcntdq la57 rdpid bus_lock_detect cldemote movdiri movdir64b enqcmd fsrm md_clear serialize tsxldtrk pconfig arch_lbr ibt amx_bf16 avx512_fp16 amx_tile amx_int8 flush_l1d arch_capabilities", + "Model:": "143", + "CPU(s):": "128", + "BogoMIPS:": "5600.00", + "L2 cache:": "128 MiB (64 instances)", + "L3 cache:": "120 MiB (2 instances)", + "Stepping:": "7", + "L1d cache:": "3 MiB (64 instances)", + "L1i cache:": "2 MiB (64 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8462Y+", + "CPU max MHz:": "4100.0000", + "CPU min MHz:": "800.0000", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "52 bits physical, 57 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0-31,64-95", + "NUMA node1 CPU(s):": "32-63,96-127", + "Vulnerability Mds:": "Not affected", + "Core(s) per socket:": "32", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Not affected", + "On-line CPU(s) list:": "0,5-64,69-127", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "1-4,65-68", + "Vulnerability Meltdown:": "Not affected", + "Vulnerability Retbleed:": "Not affected", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; Enhanced IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS SW sequence", + "Vulnerability Itlb multihit:": "Not affected", + "Vulnerability Mmio stale data:": "Not affected", + "Vulnerability Tsx async abort:": "Not affected", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": 0, + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0, + "num_wires": 4, + "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", + "witness_compiler": "c++" + }, + { + "circuit_id": "b5d133fc-f5f0-4fd8-8a37-bec3f105f957", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-15T01:52:28.531Z", + "proving_scheme": "groth16", + "status": "Ready", + "compute_time": "P0DT00H00M07.815061S", + "compute_times": { + "total": 7.892049107700586, + "queued": 26.139954, + "clean_up": 0.0009030122309923172, + "create_cpp": 0.04740026593208313, + "file_setup": 0.24122893437743187, + "compile_cpp": 4.7460735235363245, + "create_r1cs": 0.010444654151797295, + "save_results": 0.003931155428290367, + "get_r1cs_info": 0.0007425416260957718, + "groth16_setup": 1.4072796031832695, + "export_verification_key": 1.4309465549886227, + "download_trusted_setup_file": 0.0025080330669879913 + }, + "file_sizes": { + "total": 225418, + "circuit": 213240, + "total_gb": 0.000225418, + "total_mb": 0.225418, + "circuit.dat": 6176, + "code.tar.gz": 497, + "circuit.zkey": 2580, + "verification_key": 2925 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", + "Model:": "85", + "CPU(s):": "96", + "BogoMIPS:": "5400.00", + "L2 cache:": "48 MiB (48 instances)", + "L3 cache:": "66 MiB (2 instances)", + "Stepping:": "4", + "L1d cache:": "1.5 MiB (48 instances)", + "L1i cache:": "1.5 MiB (48 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "46 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", + "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", + "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Core(s) per socket:": "24", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", + "On-line CPU(s) list:": "0,1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41-49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89-95", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88", + "Vulnerability Meltdown:": "Mitigation; PTI", + "Vulnerability Retbleed:": "Mitigation; IBRS", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", + "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": 0, + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0, + "num_wires": 4, + "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", + "witness_compiler": "c++" + }, + { + "circuit_id": "b4a23df2-a7e7-4eb8-9ce1-f9d52a7b5efd", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-15T01:52:27.630Z", + "proving_scheme": "groth16", + "status": "Ready", + "compute_time": "P0DT00H00M07.577744S", + "compute_times": { + "total": 7.656200651079416, + "queued": 24.444641, + "clean_up": 0.0016275551170110703, + "create_cpp": 0.04782847873866558, + "file_setup": 0.25123047828674316, + "compile_cpp": 4.509421624243259, + "create_r1cs": 0.017046067863702774, + "save_results": 0.005663003772497177, + "get_r1cs_info": 0.000681556761264801, + "groth16_setup": 1.3982542753219604, + "export_verification_key": 1.421325797215104, + "download_trusted_setup_file": 0.0025193486362695694 + }, + "file_sizes": { + "total": 225450, + "circuit": 213240, + "total_gb": 0.00022545, + "total_mb": 0.22545, + "circuit.dat": 6176, + "code.tar.gz": 529, + "circuit.zkey": 2580, + "verification_key": 2925 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tgz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", + "Model:": "85", + "CPU(s):": "96", + "BogoMIPS:": "5400.00", + "L2 cache:": "48 MiB (48 instances)", + "L3 cache:": "66 MiB (2 instances)", + "Stepping:": "4", + "L1d cache:": "1.5 MiB (48 instances)", + "L1i cache:": "1.5 MiB (48 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "46 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", + "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", + "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Core(s) per socket:": "24", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", + "On-line CPU(s) list:": "0,1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41-49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89-95", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88", + "Vulnerability Meltdown:": "Mitigation; PTI", + "Vulnerability Retbleed:": "Mitigation; IBRS", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", + "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": 0, + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0, + "num_wires": 4, + "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", + "witness_compiler": "c++" + }, + { + "circuit_id": "dc9db61e-d2c3-40f8-a3f3-afbd9e8042c4", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-15T01:52:27.313Z", + "proving_scheme": "groth16", + "status": "Ready", + "compute_time": "P0DT00H00M07.545149S", + "compute_times": { + "total": 7.623603418469429, + "queued": 24.498309, + "clean_up": 0.0017016865313053131, + "create_cpp": 0.04762609116733074, + "file_setup": 0.24350149184465408, + "compile_cpp": 4.597848556935787, + "create_r1cs": 0.012152310460805893, + "save_results": 0.005475817248225212, + "get_r1cs_info": 0.0004205126315355301, + "groth16_setup": 1.3248953483998775, + "export_verification_key": 1.3882451467216015, + "download_trusted_setup_file": 0.0009885765612125397 + }, + "file_sizes": { + "total": 225450, + "circuit": 213240, + "total_gb": 0.00022545, + "total_mb": 0.22545, + "circuit.dat": 6176, + "code.tar.gz": 529, + "circuit.zkey": 2580, + "verification_key": 2925 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tgz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", + "Model:": "85", + "CPU(s):": "96", + "BogoMIPS:": "5400.00", + "L2 cache:": "48 MiB (48 instances)", + "L3 cache:": "66 MiB (2 instances)", + "Stepping:": "4", + "L1d cache:": "1.5 MiB (48 instances)", + "L1i cache:": "1.5 MiB (48 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "46 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", + "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", + "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Core(s) per socket:": "24", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", + "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", + "Vulnerability Meltdown:": "Mitigation; PTI", + "Vulnerability Retbleed:": "Mitigation; IBRS", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", + "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": 0, + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0, + "num_wires": 4, + "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", + "witness_compiler": "c++" + }, + { + "circuit_id": "2c1beb82-6dc9-44ea-bbf7-3514b27e47fe", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-15T01:52:27.047Z", + "proving_scheme": "groth16", + "status": "Ready", + "compute_time": "P0DT00H00M04.629165S", + "compute_times": { + "total": 4.66044994990807, + "queued": 25.910415, + "clean_up": 0.00046650797594338655, + "create_cpp": 0.030314832110889256, + "file_setup": 0.17054930399172008, + "compile_cpp": 2.9262271099723876, + "create_r1cs": 0.005123129929415882, + "save_results": 0.0024022479774430394, + "get_r1cs_info": 0.0003190510906279087, + "groth16_setup": 0.7423932970268652, + "export_verification_key": 0.7817557220114395, + "download_trusted_setup_file": 0.0007441989146173 + }, + "file_sizes": { + "total": 225420, + "circuit": 213240, + "total_gb": 0.00022542, + "total_mb": 0.22542, + "circuit.dat": 6176, + "code.tar.gz": 499, + "circuit.zkey": 2580, + "verification_key": 2925 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf tsc_known_freq pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cat_l2 cdp_l3 invpcid_single intel_ppin cdp_l2 ssbd mba ibrs ibpb stibp ibrs_enhanced tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 avx2 smep bmi2 erms invpcid cqm rdt_a avx512f avx512dq rdseed adx smap avx512ifma clflushopt clwb intel_pt avx512cd sha_ni avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local split_lock_detect avx_vnni avx512_bf16 wbnoinvd dtherm ida arat pln pts hwp hwp_act_window hwp_epp hwp_pkg_req hfi avx512vbmi umip pku ospke waitpkg avx512_vbmi2 gfni vaes vpclmulqdq avx512_vnni avx512_bitalg tme avx512_vpopcntdq la57 rdpid bus_lock_detect cldemote movdiri movdir64b enqcmd fsrm md_clear serialize tsxldtrk pconfig arch_lbr ibt amx_bf16 avx512_fp16 amx_tile amx_int8 flush_l1d arch_capabilities", + "Model:": "143", + "CPU(s):": "128", + "BogoMIPS:": "5600.00", + "L2 cache:": "128 MiB (64 instances)", + "L3 cache:": "120 MiB (2 instances)", + "Stepping:": "7", + "L1d cache:": "3 MiB (64 instances)", + "L1i cache:": "2 MiB (64 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8462Y+", + "CPU max MHz:": "4100.0000", + "CPU min MHz:": "800.0000", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "52 bits physical, 57 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0-31,64-95", + "NUMA node1 CPU(s):": "32-63,96-127", + "Vulnerability Mds:": "Not affected", + "Core(s) per socket:": "32", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Not affected", + "On-line CPU(s) list:": "0,5-64,69-127", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "1-4,65-68", + "Vulnerability Meltdown:": "Not affected", + "Vulnerability Retbleed:": "Not affected", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; Enhanced IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS SW sequence", + "Vulnerability Itlb multihit:": "Not affected", + "Vulnerability Mmio stale data:": "Not affected", + "Vulnerability Tsx async abort:": "Not affected", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": 0, + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0, + "num_wires": 4, + "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", + "witness_compiler": "c++" + }, + { + "circuit_id": "d492fd4d-7509-45fb-87b3-adef4fd745df", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-15T01:52:26.747Z", + "proving_scheme": "groth16", + "status": "Ready", + "compute_time": "P0DT00H00M04.578700S", + "compute_times": { + "total": 4.609950889949687, + "queued": 16.176819, + "clean_up": 0.0004615719662979245, + "create_cpp": 0.029976019985042512, + "file_setup": 0.16958309896290302, + "compile_cpp": 2.9370939240325242, + "create_r1cs": 0.005518535035662353, + "save_results": 0.0025302410358563066, + "get_r1cs_info": 0.00021990097593516111, + "groth16_setup": 0.7456176759442315, + "export_verification_key": 0.7180980830453336, + "download_trusted_setup_file": 0.0006872049998492002 + }, + "file_sizes": { + "total": 225450, + "circuit": 213240, + "total_gb": 0.00022545, + "total_mb": 0.22545, + "circuit.dat": 6176, + "code.tar.gz": 529, + "circuit.zkey": 2580, + "verification_key": 2925 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tgz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf tsc_known_freq pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cat_l2 cdp_l3 invpcid_single intel_ppin cdp_l2 ssbd mba ibrs ibpb stibp ibrs_enhanced tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 avx2 smep bmi2 erms invpcid cqm rdt_a avx512f avx512dq rdseed adx smap avx512ifma clflushopt clwb intel_pt avx512cd sha_ni avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local split_lock_detect avx_vnni avx512_bf16 wbnoinvd dtherm ida arat pln pts hwp hwp_act_window hwp_epp hwp_pkg_req hfi avx512vbmi umip pku ospke waitpkg avx512_vbmi2 gfni vaes vpclmulqdq avx512_vnni avx512_bitalg tme avx512_vpopcntdq la57 rdpid bus_lock_detect cldemote movdiri movdir64b enqcmd fsrm md_clear serialize tsxldtrk pconfig arch_lbr ibt amx_bf16 avx512_fp16 amx_tile amx_int8 flush_l1d arch_capabilities", + "Model:": "143", + "CPU(s):": "128", + "BogoMIPS:": "5600.00", + "L2 cache:": "128 MiB (64 instances)", + "L3 cache:": "120 MiB (2 instances)", + "Stepping:": "7", + "L1d cache:": "3 MiB (64 instances)", + "L1i cache:": "2 MiB (64 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8462Y+", + "CPU max MHz:": "4100.0000", + "CPU min MHz:": "800.0000", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "52 bits physical, 57 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0-31,64-95", + "NUMA node1 CPU(s):": "32-63,96-127", + "Vulnerability Mds:": "Not affected", + "Core(s) per socket:": "32", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Not affected", + "On-line CPU(s) list:": "0,5-64,69-127", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "1-4,65-68", + "Vulnerability Meltdown:": "Not affected", + "Vulnerability Retbleed:": "Not affected", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; Enhanced IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS SW sequence", + "Vulnerability Itlb multihit:": "Not affected", + "Vulnerability Mmio stale data:": "Not affected", + "Vulnerability Tsx async abort:": "Not affected", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": 0, + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0, + "num_wires": 4, + "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", + "witness_compiler": "c++" + }, + { + "circuit_id": "b4dd22c7-ef45-415b-9adb-b55796852c23", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-15T01:52:26.416Z", + "proving_scheme": "groth16", + "status": "Ready", + "compute_time": "P0DT00H00M04.686577S", + "compute_times": { + "total": 4.717802106984891, + "queued": 6.382446, + "clean_up": 0.000551781035028398, + "create_cpp": 0.029999293037690222, + "file_setup": 0.18139734293799847, + "compile_cpp": 2.932805340969935, + "create_r1cs": 0.005408287048339844, + "save_results": 0.015873302007094026, + "get_r1cs_info": 0.00022628996521234512, + "groth16_setup": 0.7609705639770254, + "export_verification_key": 0.7896749229403213, + "download_trusted_setup_file": 0.0007316060364246368 + }, + "file_sizes": { + "total": 225418, + "circuit": 213240, + "total_gb": 0.000225418, + "total_mb": 0.225418, + "circuit.dat": 6176, + "code.tar.gz": 497, + "circuit.zkey": 2580, + "verification_key": 2925 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf tsc_known_freq pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cat_l2 cdp_l3 invpcid_single intel_ppin cdp_l2 ssbd mba ibrs ibpb stibp ibrs_enhanced tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 avx2 smep bmi2 erms invpcid cqm rdt_a avx512f avx512dq rdseed adx smap avx512ifma clflushopt clwb intel_pt avx512cd sha_ni avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local split_lock_detect avx_vnni avx512_bf16 wbnoinvd dtherm ida arat pln pts hwp hwp_act_window hwp_epp hwp_pkg_req hfi avx512vbmi umip pku ospke waitpkg avx512_vbmi2 gfni vaes vpclmulqdq avx512_vnni avx512_bitalg tme avx512_vpopcntdq la57 rdpid bus_lock_detect cldemote movdiri movdir64b enqcmd fsrm md_clear serialize tsxldtrk pconfig arch_lbr ibt amx_bf16 avx512_fp16 amx_tile amx_int8 flush_l1d arch_capabilities", + "Model:": "143", + "CPU(s):": "128", + "BogoMIPS:": "5600.00", + "L2 cache:": "128 MiB (64 instances)", + "L3 cache:": "120 MiB (2 instances)", + "Stepping:": "7", + "L1d cache:": "3 MiB (64 instances)", + "L1i cache:": "2 MiB (64 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8462Y+", + "CPU max MHz:": "4100.0000", + "CPU min MHz:": "800.0000", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "52 bits physical, 57 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0-31,64-95", + "NUMA node1 CPU(s):": "32-63,96-127", + "Vulnerability Mds:": "Not affected", + "Core(s) per socket:": "32", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Not affected", + "On-line CPU(s) list:": "0,5-64,69-127", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "1-4,65-68", + "Vulnerability Meltdown:": "Not affected", + "Vulnerability Retbleed:": "Not affected", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; Enhanced IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS SW sequence", + "Vulnerability Itlb multihit:": "Not affected", + "Vulnerability Mmio stale data:": "Not affected", + "Vulnerability Tsx async abort:": "Not affected", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": 0, + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0, + "num_wires": 4, + "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", + "witness_compiler": "c++" + }, + { + "circuit_id": "62424675-e5a3-472b-b6d9-360469112a6c", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-15T01:52:26.115Z", + "proving_scheme": "groth16", + "status": "Ready", + "compute_time": "P0DT00H00M04.768701S", + "compute_times": { + "total": 4.799833326018415, + "queued": 0.976508, + "clean_up": 0.00047689699567854404, + "create_cpp": 0.030055438983254135, + "file_setup": 0.17185658100061119, + "compile_cpp": 2.9329681789968163, + "create_r1cs": 0.005263481056317687, + "save_results": 0.09661219897679985, + "get_r1cs_info": 0.00022084394004195929, + "groth16_setup": 0.7651074749883264, + "export_verification_key": 0.7962674020091072, + "download_trusted_setup_file": 0.0007937300251796842 + }, + "file_sizes": { + "total": 225450, + "circuit": 213240, + "total_gb": 0.00022545, + "total_mb": 0.22545, + "circuit.dat": 6176, + "code.tar.gz": 529, + "circuit.zkey": 2580, + "verification_key": 2925 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tgz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf tsc_known_freq pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cat_l2 cdp_l3 invpcid_single intel_ppin cdp_l2 ssbd mba ibrs ibpb stibp ibrs_enhanced tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 avx2 smep bmi2 erms invpcid cqm rdt_a avx512f avx512dq rdseed adx smap avx512ifma clflushopt clwb intel_pt avx512cd sha_ni avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local split_lock_detect avx_vnni avx512_bf16 wbnoinvd dtherm ida arat pln pts hwp hwp_act_window hwp_epp hwp_pkg_req hfi avx512vbmi umip pku ospke waitpkg avx512_vbmi2 gfni vaes vpclmulqdq avx512_vnni avx512_bitalg tme avx512_vpopcntdq la57 rdpid bus_lock_detect cldemote movdiri movdir64b enqcmd fsrm md_clear serialize tsxldtrk pconfig arch_lbr ibt amx_bf16 avx512_fp16 amx_tile amx_int8 flush_l1d arch_capabilities", + "Model:": "143", + "CPU(s):": "128", + "BogoMIPS:": "5600.00", + "L2 cache:": "128 MiB (64 instances)", + "L3 cache:": "120 MiB (2 instances)", + "Stepping:": "7", + "L1d cache:": "3 MiB (64 instances)", + "L1i cache:": "2 MiB (64 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8462Y+", + "CPU max MHz:": "4100.0000", + "CPU min MHz:": "800.0000", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "52 bits physical, 57 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0-31,64-95", + "NUMA node1 CPU(s):": "32-63,96-127", + "Vulnerability Mds:": "Not affected", + "Core(s) per socket:": "32", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Not affected", + "On-line CPU(s) list:": "0,5-64,69-127", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "1-4,65-68", + "Vulnerability Meltdown:": "Not affected", + "Vulnerability Retbleed:": "Not affected", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; Enhanced IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS SW sequence", + "Vulnerability Itlb multihit:": "Not affected", + "Vulnerability Mmio stale data:": "Not affected", + "Vulnerability Tsx async abort:": "Not affected", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": 0, + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0, + "num_wires": 4, + "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", + "witness_compiler": "c++" + }, + { + "circuit_id": "16c96d49-925a-4232-8da4-c43026de854e", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-15T01:44:13.892Z", + "proving_scheme": "groth16", + "status": "Ready", + "compute_time": "P0DT00H00M07.885708S", + "compute_times": { + "total": 7.955762881785631, + "queued": 28.847048, + "clean_up": 0.0018043965101242065, + "create_cpp": 0.055242860689759254, + "file_setup": 0.24882620573043823, + "compile_cpp": 4.8809529915452, + "create_r1cs": 0.01775236241519451, + "save_results": 0.006603563204407692, + "get_r1cs_info": 0.000814288854598999, + "groth16_setup": 1.4022877030074596, + "export_verification_key": 1.3382868971675634, + "download_trusted_setup_file": 0.002887807786464691 + }, + "file_sizes": { + "total": 225418, + "circuit": 213240, + "total_gb": 0.000225418, + "total_mb": 0.225418, + "circuit.dat": 6176, + "code.tar.gz": 497, + "circuit.zkey": 2580, + "verification_key": 2925 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", + "Model:": "85", + "CPU(s):": "96", + "BogoMIPS:": "5400.00", + "L2 cache:": "48 MiB (48 instances)", + "L3 cache:": "66 MiB (2 instances)", + "Stepping:": "4", + "L1d cache:": "1.5 MiB (48 instances)", + "L1i cache:": "1.5 MiB (48 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "46 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", + "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", + "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Core(s) per socket:": "24", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", + "On-line CPU(s) list:": "0,1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41-49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89-95", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88", + "Vulnerability Meltdown:": "Mitigation; PTI", + "Vulnerability Retbleed:": "Mitigation; IBRS", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", + "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": 0, + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0, + "num_wires": 4, + "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", + "witness_compiler": "c++" + }, + { + "circuit_id": "01d61417-f3c8-405d-8327-8676c11b920c", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-15T01:44:13.567Z", + "proving_scheme": "groth16", + "status": "Ready", + "compute_time": "P0DT00H00M07.745866S", + "compute_times": { + "total": 7.822312492877245, + "queued": 25.557495, + "clean_up": 0.0016726050525903702, + "create_cpp": 0.054300736635923386, + "file_setup": 0.24556394666433334, + "compile_cpp": 4.760834071785212, + "create_r1cs": 0.011471176519989967, + "save_results": 0.005745843052864075, + "get_r1cs_info": 0.0006968062371015549, + "groth16_setup": 1.4245723970234394, + "export_verification_key": 1.3145959675312042, + "download_trusted_setup_file": 0.0024240929633378983 + }, + "file_sizes": { + "total": 225418, + "circuit": 213240, + "total_gb": 0.000225418, + "total_mb": 0.225418, + "circuit.dat": 6176, + "code.tar.gz": 497, + "circuit.zkey": 2580, + "verification_key": 2925 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", + "Model:": "85", + "CPU(s):": "96", + "BogoMIPS:": "5400.00", + "L2 cache:": "48 MiB (48 instances)", + "L3 cache:": "66 MiB (2 instances)", + "Stepping:": "4", + "L1d cache:": "1.5 MiB (48 instances)", + "L1i cache:": "1.5 MiB (48 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "46 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", + "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", + "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Core(s) per socket:": "24", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", + "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", + "Vulnerability Meltdown:": "Mitigation; PTI", + "Vulnerability Retbleed:": "Mitigation; IBRS", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", + "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": 0, + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0, + "num_wires": 4, + "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", + "witness_compiler": "c++" + }, + { + "circuit_id": "68922dfc-836b-4954-915d-91e6474e1b5d", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-15T01:44:13.542Z", + "proving_scheme": "groth16", + "status": "Ready", + "compute_time": "P0DT00H00M08.127036S", + "compute_times": { + "total": 8.208296919241548, + "queued": 23.853413, + "clean_up": 0.0016598310321569443, + "create_cpp": 0.046626683324575424, + "file_setup": 0.24938496574759483, + "compile_cpp": 5.05383531935513, + "create_r1cs": 0.050674159079790115, + "save_results": 0.005311015993356705, + "get_r1cs_info": 0.000824756920337677, + "groth16_setup": 1.4834840036928654, + "export_verification_key": 1.3135647680610418, + "download_trusted_setup_file": 0.0025572720915079117 + }, + "file_sizes": { + "total": 225418, + "circuit": 213240, + "total_gb": 0.000225418, + "total_mb": 0.225418, + "circuit.dat": 6176, + "code.tar.gz": 497, + "circuit.zkey": 2580, + "verification_key": 2925 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", + "Model:": "85", + "CPU(s):": "96", + "BogoMIPS:": "5400.00", + "L2 cache:": "48 MiB (48 instances)", + "L3 cache:": "66 MiB (2 instances)", + "Stepping:": "4", + "L1d cache:": "1.5 MiB (48 instances)", + "L1i cache:": "1.5 MiB (48 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "46 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", + "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", + "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Core(s) per socket:": "24", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", + "On-line CPU(s) list:": "0,1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41-49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89-95", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88", + "Vulnerability Meltdown:": "Mitigation; PTI", + "Vulnerability Retbleed:": "Mitigation; IBRS", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", + "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": 0, + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0, + "num_wires": 4, + "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", + "witness_compiler": "c++" + }, + { + "circuit_id": "03dcdd85-9300-440b-8353-91bea904d8c5", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-15T01:44:12.640Z", + "proving_scheme": "groth16", + "status": "Ready", + "compute_time": "P0DT00H00M07.854047S", + "compute_times": { + "total": 7.929084803909063, + "queued": 23.597366, + "clean_up": 0.0012285895645618439, + "create_cpp": 0.04848377965390682, + "file_setup": 0.24958525598049164, + "compile_cpp": 4.769202491268516, + "create_r1cs": 0.016365252435207367, + "save_results": 0.005111081525683403, + "get_r1cs_info": 0.0006984081119298935, + "groth16_setup": 1.324900783598423, + "export_verification_key": 1.5104059372097254, + "download_trusted_setup_file": 0.0024766679853200912 + }, + "file_sizes": { + "total": 225450, + "circuit": 213240, + "total_gb": 0.00022545, + "total_mb": 0.22545, + "circuit.dat": 6176, + "code.tar.gz": 529, + "circuit.zkey": 2580, + "verification_key": 2925 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tgz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", + "Model:": "85", + "CPU(s):": "96", + "BogoMIPS:": "5400.00", + "L2 cache:": "48 MiB (48 instances)", + "L3 cache:": "66 MiB (2 instances)", + "Stepping:": "4", + "L1d cache:": "1.5 MiB (48 instances)", + "L1i cache:": "1.5 MiB (48 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "46 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", + "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", + "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Core(s) per socket:": "24", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", + "On-line CPU(s) list:": "0,1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41-49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89-95", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88", + "Vulnerability Meltdown:": "Mitigation; PTI", + "Vulnerability Retbleed:": "Mitigation; IBRS", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", + "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": 0, + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0, + "num_wires": 4, + "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", + "witness_compiler": "c++" + }, + { + "circuit_id": "53eb66ff-b56b-4cb7-a75a-49924b2fb393", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-15T01:44:12.394Z", + "proving_scheme": "groth16", + "status": "Ready", + "compute_time": "P0DT00H00M07.394188S", + "compute_times": { + "total": 7.469893058761954, + "queued": 21.7528, + "clean_up": 0.0017232540994882584, + "create_cpp": 0.04593514837324619, + "file_setup": 0.2557643633335829, + "compile_cpp": 4.412009971216321, + "create_r1cs": 0.009809941053390503, + "save_results": 0.00808953307569027, + "get_r1cs_info": 0.000814361497759819, + "groth16_setup": 1.357611108571291, + "export_verification_key": 1.3745716717094183, + "download_trusted_setup_file": 0.0029620975255966187 + }, + "file_sizes": { + "total": 225420, + "circuit": 213240, + "total_gb": 0.00022542, + "total_mb": 0.22542, + "circuit.dat": 6176, + "code.tar.gz": 499, + "circuit.zkey": 2580, + "verification_key": 2925 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", + "Model:": "85", + "CPU(s):": "96", + "BogoMIPS:": "5400.00", + "L2 cache:": "48 MiB (48 instances)", + "L3 cache:": "66 MiB (2 instances)", + "Stepping:": "4", + "L1d cache:": "1.5 MiB (48 instances)", + "L1i cache:": "1.5 MiB (48 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "46 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", + "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", + "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Core(s) per socket:": "24", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", + "On-line CPU(s) list:": "0,1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41-49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89-95", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88", + "Vulnerability Meltdown:": "Mitigation; PTI", + "Vulnerability Retbleed:": "Mitigation; IBRS", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", + "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": 0, + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0, + "num_wires": 4, + "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", + "witness_compiler": "c++" + }, + { + "circuit_id": "407bcfed-fe41-4066-9332-aeb40b808d06", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-15T01:44:12.156Z", + "proving_scheme": "groth16", + "status": "Ready", + "compute_time": "P0DT00H00M07.571485S", + "compute_times": { + "total": 7.641632162034512, + "queued": 18.226087, + "clean_up": 0.0013474393635988235, + "create_cpp": 0.05902073346078396, + "file_setup": 0.23511924035847187, + "compile_cpp": 4.656228628009558, + "create_r1cs": 0.018529707565903664, + "save_results": 0.004187965765595436, + "get_r1cs_info": 0.0008369125425815582, + "groth16_setup": 1.2646941412240267, + "export_verification_key": 1.3983517494052649, + "download_trusted_setup_file": 0.002851281315088272 + }, + "file_sizes": { + "total": 225418, + "circuit": 213240, + "total_gb": 0.000225418, + "total_mb": 0.225418, + "circuit.dat": 6176, + "code.tar.gz": 497, + "circuit.zkey": 2580, + "verification_key": 2925 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", + "Model:": "85", + "CPU(s):": "96", + "BogoMIPS:": "5400.00", + "L2 cache:": "48 MiB (48 instances)", + "L3 cache:": "66 MiB (2 instances)", + "Stepping:": "4", + "L1d cache:": "1.5 MiB (48 instances)", + "L1i cache:": "1.5 MiB (48 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "46 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", + "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", + "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Core(s) per socket:": "24", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", + "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", + "Vulnerability Meltdown:": "Mitigation; PTI", + "Vulnerability Retbleed:": "Mitigation; IBRS", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", + "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": 0, + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0, + "num_wires": 4, + "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", + "witness_compiler": "c++" + }, + { + "circuit_id": "a7c1a9a9-2df3-4f76-9be0-1bb8456c22db", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-15T01:44:11.755Z", + "proving_scheme": "groth16", + "status": "Ready", + "compute_time": "P0DT00H00M07.694656S", + "compute_times": { + "total": 7.773913914337754, + "queued": 9.755186, + "clean_up": 0.0017512477934360504, + "create_cpp": 0.05254339054226875, + "file_setup": 0.25238266587257385, + "compile_cpp": 4.748115291818976, + "create_r1cs": 0.017892709001898766, + "save_results": 0.005697643384337425, + "get_r1cs_info": 0.0006967000663280487, + "groth16_setup": 1.3444917406886816, + "export_verification_key": 1.3474417924880981, + "download_trusted_setup_file": 0.0025170259177684784 + }, + "file_sizes": { + "total": 225450, + "circuit": 213240, + "total_gb": 0.00022545, + "total_mb": 0.22545, + "circuit.dat": 6176, + "code.tar.gz": 529, + "circuit.zkey": 2580, + "verification_key": 2925 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tgz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", + "Model:": "85", + "CPU(s):": "96", + "BogoMIPS:": "5400.00", + "L2 cache:": "48 MiB (48 instances)", + "L3 cache:": "66 MiB (2 instances)", + "Stepping:": "4", + "L1d cache:": "1.5 MiB (48 instances)", + "L1i cache:": "1.5 MiB (48 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "46 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", + "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", + "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Core(s) per socket:": "24", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", + "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", + "Vulnerability Meltdown:": "Mitigation; PTI", + "Vulnerability Retbleed:": "Mitigation; IBRS", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", + "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": 0, + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0, + "num_wires": 4, + "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", + "witness_compiler": "c++" + }, + { + "circuit_id": "7b7b7b2a-451c-4d73-ab46-f0e66c2c85ca", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-15T01:44:11.486Z", + "proving_scheme": "groth16", + "status": "Ready", + "compute_time": "P0DT00H00M07.630543S", + "compute_times": { + "total": 7.710038185119629, + "queued": 1.150464, + "clean_up": 0.0011645127087831497, + "create_cpp": 0.058946333825588226, + "file_setup": 0.25080287642776966, + "compile_cpp": 4.800692165270448, + "create_r1cs": 0.01764843240380287, + "save_results": 0.004682136699557304, + "get_r1cs_info": 0.0006801802664995193, + "groth16_setup": 1.2236122898757458, + "export_verification_key": 1.3488865680992603, + "download_trusted_setup_file": 0.002442905679345131 + }, + "file_sizes": { + "total": 225450, + "circuit": 213240, + "total_gb": 0.00022545, + "total_mb": 0.22545, + "circuit.dat": 6176, + "code.tar.gz": 529, + "circuit.zkey": 2580, + "verification_key": 2925 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tgz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", + "Model:": "85", + "CPU(s):": "96", + "BogoMIPS:": "5400.00", + "L2 cache:": "48 MiB (48 instances)", + "L3 cache:": "66 MiB (2 instances)", + "Stepping:": "4", + "L1d cache:": "1.5 MiB (48 instances)", + "L1i cache:": "1.5 MiB (48 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "46 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", + "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", + "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Core(s) per socket:": "24", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", + "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", + "Vulnerability Meltdown:": "Mitigation; PTI", + "Vulnerability Retbleed:": "Mitigation; IBRS", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", + "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": 0, + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0, + "num_wires": 4, + "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", + "witness_compiler": "c++" + }, + { + "circuit_id": "02c640e5-cfcb-41ae-af49-b931f9a8c09c", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-15T01:28:24.401Z", + "proving_scheme": "groth16", + "status": "Ready", + "compute_time": "P0DT00H00M08.241318S", + "compute_times": { + "total": 8.329373510554433, + "queued": 1.121606, + "clean_up": 0.0019346550107002258, + "create_cpp": 0.05594826489686966, + "file_setup": 0.27456157468259335, + "compile_cpp": 4.8171467911452055, + "create_r1cs": 0.026553984731435776, + "save_results": 0.006161559373140335, + "get_r1cs_info": 0.0005842037498950958, + "groth16_setup": 1.7246721610426903, + "export_verification_key": 1.4198596961796284, + "download_trusted_setup_file": 0.001470223069190979 + }, + "file_sizes": { + "total": 225418, + "circuit": 213240, + "total_gb": 0.000225418, + "total_mb": 0.225418, + "circuit.dat": 6176, + "code.tar.gz": 497, + "circuit.zkey": 2580, + "verification_key": 2925 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", + "Model:": "85", + "CPU(s):": "96", + "BogoMIPS:": "5400.00", + "L2 cache:": "48 MiB (48 instances)", + "L3 cache:": "66 MiB (2 instances)", + "Stepping:": "4", + "L1d cache:": "1.5 MiB (48 instances)", + "L1i cache:": "1.5 MiB (48 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "46 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", + "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", + "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Core(s) per socket:": "24", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", + "On-line CPU(s) list:": "0,1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41-49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89-95", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88", + "Vulnerability Meltdown:": "Mitigation; PTI", + "Vulnerability Retbleed:": "Mitigation; IBRS", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", + "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": 0, + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0, + "num_wires": 4, + "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", + "witness_compiler": "c++" + }, + { + "circuit_id": "723f695f-ceca-435e-9423-fa9623b26962", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-15T01:28:24.332Z", + "proving_scheme": "groth16", + "status": "Ready", + "compute_time": "P0DT00H00M08.354681S", + "compute_times": { + "total": 8.443675557151437, + "queued": 1.117419, + "clean_up": 0.0017919130623340607, + "create_cpp": 0.04705219343304634, + "file_setup": 0.2759277820587158, + "compile_cpp": 4.905571544542909, + "create_r1cs": 0.009557157754898071, + "save_results": 0.006301635876297951, + "get_r1cs_info": 0.00048459507524967194, + "groth16_setup": 1.7585814129561186, + "export_verification_key": 1.4364026803523302, + "download_trusted_setup_file": 0.0015424657613039017 + }, + "file_sizes": { + "total": 225418, + "circuit": 213240, + "total_gb": 0.000225418, + "total_mb": 0.225418, + "circuit.dat": 6176, + "code.tar.gz": 497, + "circuit.zkey": 2580, + "verification_key": 2925 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", + "Model:": "85", + "CPU(s):": "96", + "BogoMIPS:": "5400.00", + "L2 cache:": "48 MiB (48 instances)", + "L3 cache:": "66 MiB (2 instances)", + "Stepping:": "4", + "L1d cache:": "1.5 MiB (48 instances)", + "L1i cache:": "1.5 MiB (48 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "46 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", + "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", + "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Core(s) per socket:": "24", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", + "On-line CPU(s) list:": "0,1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41-49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89-95", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88", + "Vulnerability Meltdown:": "Mitigation; PTI", + "Vulnerability Retbleed:": "Mitigation; IBRS", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", + "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": 0, + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0, + "num_wires": 4, + "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", + "witness_compiler": "c++" + }, + { + "circuit_id": "1f4e0b8e-d4a1-40fa-b32b-a8d263ca516f", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-15T01:28:23.531Z", + "proving_scheme": "groth16", + "status": "Ready", + "compute_time": "P0DT00H00M08.068099S", + "compute_times": { + "total": 8.153660595417023, + "queued": 1.071738, + "clean_up": 0.001531621441245079, + "create_cpp": 0.045755207538604736, + "file_setup": 0.2599444091320038, + "compile_cpp": 4.871264658868313, + "create_r1cs": 0.017335444688796997, + "save_results": 0.005486989393830299, + "get_r1cs_info": 0.0006858445703983307, + "groth16_setup": 1.361423509195447, + "export_verification_key": 1.5872800443321466, + "download_trusted_setup_file": 0.0024511031806468964 + }, + "file_sizes": { + "total": 225450, + "circuit": 213240, + "total_gb": 0.00022545, + "total_mb": 0.22545, + "circuit.dat": 6176, + "code.tar.gz": 529, + "circuit.zkey": 2580, + "verification_key": 2925 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tgz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", + "Model:": "85", + "CPU(s):": "96", + "BogoMIPS:": "5400.00", + "L2 cache:": "48 MiB (48 instances)", + "L3 cache:": "66 MiB (2 instances)", + "Stepping:": "4", + "L1d cache:": "1.5 MiB (48 instances)", + "L1i cache:": "1.5 MiB (48 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "46 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", + "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", + "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Core(s) per socket:": "24", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", + "On-line CPU(s) list:": "0,1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41-49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89-95", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88", + "Vulnerability Meltdown:": "Mitigation; PTI", + "Vulnerability Retbleed:": "Mitigation; IBRS", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", + "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": 0, + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0, + "num_wires": 4, + "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", + "witness_compiler": "c++" + }, + { + "circuit_id": "7347f61d-b7cb-4343-a5bf-ebce2cc55f8a", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-15T01:28:23.438Z", + "proving_scheme": "groth16", + "status": "Ready", + "compute_time": "P0DT00H00M08.140640S", + "compute_times": { + "total": 8.235822454094887, + "queued": 1.081126, + "clean_up": 0.0017961226403713226, + "create_cpp": 0.04311295971274376, + "file_setup": 0.27040280401706696, + "compile_cpp": 4.741711314767599, + "create_r1cs": 0.008934037759900093, + "save_results": 0.0059998612850904465, + "get_r1cs_info": 0.0005991235375404358, + "groth16_setup": 1.4837695751339197, + "export_verification_key": 1.6770079042762518, + "download_trusted_setup_file": 0.0020057205110788345 + }, + "file_sizes": { + "total": 225420, + "circuit": 213240, + "total_gb": 0.00022542, + "total_mb": 0.22542, + "circuit.dat": 6176, + "code.tar.gz": 499, + "circuit.zkey": 2580, + "verification_key": 2925 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", + "Model:": "85", + "CPU(s):": "96", + "BogoMIPS:": "5400.00", + "L2 cache:": "48 MiB (48 instances)", + "L3 cache:": "66 MiB (2 instances)", + "Stepping:": "4", + "L1d cache:": "1.5 MiB (48 instances)", + "L1i cache:": "1.5 MiB (48 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "46 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", + "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", + "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Core(s) per socket:": "24", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", + "On-line CPU(s) list:": "0,1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41-49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89-95", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88", + "Vulnerability Meltdown:": "Mitigation; PTI", + "Vulnerability Retbleed:": "Mitigation; IBRS", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", + "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": 0, + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0, + "num_wires": 4, + "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", + "witness_compiler": "c++" + }, + { + "circuit_id": "60568e01-5db1-4bcc-8b5d-9a5d0c597cfc", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-15T01:28:22.740Z", + "proving_scheme": "groth16", + "status": "Ready", + "compute_time": "P0DT00H00M07.678150S", + "compute_times": { + "total": 7.751736994832754, + "queued": 1.13689, + "clean_up": 0.0017000120133161545, + "create_cpp": 0.04771371744573116, + "file_setup": 0.25899965688586235, + "compile_cpp": 4.8372255228459835, + "create_r1cs": 0.017538156360387802, + "save_results": 0.00590207614004612, + "get_r1cs_info": 0.0006850995123386383, + "groth16_setup": 1.2987089455127716, + "export_verification_key": 1.2803236413747072, + "download_trusted_setup_file": 0.0023799482733011246 + }, + "file_sizes": { + "total": 225418, + "circuit": 213240, + "total_gb": 0.000225418, + "total_mb": 0.225418, + "circuit.dat": 6176, + "code.tar.gz": 497, + "circuit.zkey": 2580, + "verification_key": 2925 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", + "Model:": "85", + "CPU(s):": "96", + "BogoMIPS:": "5400.00", + "L2 cache:": "48 MiB (48 instances)", + "L3 cache:": "66 MiB (2 instances)", + "Stepping:": "4", + "L1d cache:": "1.5 MiB (48 instances)", + "L1i cache:": "1.5 MiB (48 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "46 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", + "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", + "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Core(s) per socket:": "24", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", + "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", + "Vulnerability Meltdown:": "Mitigation; PTI", + "Vulnerability Retbleed:": "Mitigation; IBRS", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", + "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": 0, + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0, + "num_wires": 4, + "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", + "witness_compiler": "c++" + }, + { + "circuit_id": "631a6175-1cf5-4d85-9dba-beb0b7f39ac4", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-15T01:28:22.659Z", + "proving_scheme": "groth16", + "status": "Ready", + "compute_time": "P0DT00H00M08.029136S", + "compute_times": { + "total": 8.106146903708577, + "queued": 1.175805, + "clean_up": 0.0012847986072301865, + "create_cpp": 0.046614110469818115, + "file_setup": 0.25902401097118855, + "compile_cpp": 4.752150634303689, + "create_r1cs": 0.009271597489714622, + "save_results": 0.0047521647065877914, + "get_r1cs_info": 0.0004211030900478363, + "groth16_setup": 1.3230060525238514, + "export_verification_key": 1.7080091033130884, + "download_trusted_setup_file": 0.0011603403836488724 + }, + "file_sizes": { + "total": 225450, + "circuit": 213240, + "total_gb": 0.00022545, + "total_mb": 0.22545, + "circuit.dat": 6176, + "code.tar.gz": 529, + "circuit.zkey": 2580, + "verification_key": 2925 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tgz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", + "Model:": "85", + "CPU(s):": "96", + "BogoMIPS:": "5400.00", + "L2 cache:": "48 MiB (48 instances)", + "L3 cache:": "66 MiB (2 instances)", + "Stepping:": "4", + "L1d cache:": "1.5 MiB (48 instances)", + "L1i cache:": "1.5 MiB (48 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "46 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", + "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", + "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Core(s) per socket:": "24", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", + "On-line CPU(s) list:": "0,1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41-49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89-95", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88", + "Vulnerability Meltdown:": "Mitigation; PTI", + "Vulnerability Retbleed:": "Mitigation; IBRS", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", + "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": 0, + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0, + "num_wires": 4, + "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", + "witness_compiler": "c++" + }, + { + "circuit_id": "fc9f5f13-b3fb-4921-9e72-79d9e66e179b", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-15T01:25:43.592Z", + "proving_scheme": "groth16", + "status": "Ready", + "compute_time": "P0DT00H00M08.307121S", + "compute_times": { + "total": 8.39285988919437, + "queued": 1.170429, + "clean_up": 0.0017455965280532837, + "create_cpp": 0.05315246060490608, + "file_setup": 0.25207769870758057, + "compile_cpp": 4.999113095924258, + "create_r1cs": 0.011692922562360764, + "save_results": 0.005579909309744835, + "get_r1cs_info": 0.0005984082818031311, + "groth16_setup": 1.5826541632413864, + "export_verification_key": 1.484537510201335, + "download_trusted_setup_file": 0.0012438185513019562 + }, + "file_sizes": { + "total": 225418, + "circuit": 213240, + "total_gb": 0.000225418, + "total_mb": 0.225418, + "circuit.dat": 6176, + "code.tar.gz": 497, + "circuit.zkey": 2580, + "verification_key": 2925 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", + "Model:": "85", + "CPU(s):": "96", + "BogoMIPS:": "5400.00", + "L2 cache:": "48 MiB (48 instances)", + "L3 cache:": "66 MiB (2 instances)", + "Stepping:": "4", + "L1d cache:": "1.5 MiB (48 instances)", + "L1i cache:": "1.5 MiB (48 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "46 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", + "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", + "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Core(s) per socket:": "24", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", + "On-line CPU(s) list:": "0,1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41-49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89-95", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88", + "Vulnerability Meltdown:": "Mitigation; PTI", + "Vulnerability Retbleed:": "Mitigation; IBRS", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", + "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": 0, + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0, + "num_wires": 4, + "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", + "witness_compiler": "c++" + }, + { + "circuit_id": "e4031874-dd5e-44fe-9c00-d1fd6fb202c6", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-15T01:25:43.503Z", + "proving_scheme": "groth16", + "status": "Ready", + "compute_time": "P0DT00H00M08.235985S", + "compute_times": { + "total": 8.321344017982483, + "queued": 1.068236, + "clean_up": 0.0016151797026395798, + "create_cpp": 0.05340844392776489, + "file_setup": 0.26708511635661125, + "compile_cpp": 4.841666031628847, + "create_r1cs": 0.012876151129603386, + "save_results": 0.005826536566019058, + "get_r1cs_info": 0.0005277041345834732, + "groth16_setup": 1.6289604622870684, + "export_verification_key": 1.5077580194920301, + "download_trusted_setup_file": 0.0011740028858184814 + }, + "file_sizes": { + "total": 225418, + "circuit": 213240, + "total_gb": 0.000225418, + "total_mb": 0.225418, + "circuit.dat": 6176, + "code.tar.gz": 497, + "circuit.zkey": 2580, + "verification_key": 2925 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", + "Model:": "85", + "CPU(s):": "96", + "BogoMIPS:": "5400.00", + "L2 cache:": "48 MiB (48 instances)", + "L3 cache:": "66 MiB (2 instances)", + "Stepping:": "4", + "L1d cache:": "1.5 MiB (48 instances)", + "L1i cache:": "1.5 MiB (48 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "46 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", + "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", + "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Core(s) per socket:": "24", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", + "On-line CPU(s) list:": "0,1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41-49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89-95", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88", + "Vulnerability Meltdown:": "Mitigation; PTI", + "Vulnerability Retbleed:": "Mitigation; IBRS", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", + "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": 0, + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0, + "num_wires": 4, + "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", + "witness_compiler": "c++" + }, + { + "circuit_id": "36ed7747-01de-4272-bd8e-e28802d5c668", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-15T01:25:42.642Z", + "proving_scheme": "groth16", + "status": "Ready", + "compute_time": "P0DT00H00M08.289158S", + "compute_times": { + "total": 8.37978408485651, + "queued": 1.052437, + "clean_up": 0.0008304361253976822, + "create_cpp": 0.04860556498169899, + "file_setup": 0.25936984457075596, + "compile_cpp": 5.029499880969524, + "create_r1cs": 0.01772325113415718, + "save_results": 0.0037908367812633514, + "get_r1cs_info": 0.0006020087748765945, + "groth16_setup": 1.5292650777846575, + "export_verification_key": 1.488473566249013, + "download_trusted_setup_file": 0.001187194138765335 + }, + "file_sizes": { + "total": 225450, + "circuit": 213240, + "total_gb": 0.00022545, + "total_mb": 0.22545, + "circuit.dat": 6176, + "code.tar.gz": 529, + "circuit.zkey": 2580, + "verification_key": 2925 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tgz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", + "Model:": "85", + "CPU(s):": "96", + "BogoMIPS:": "5400.00", + "L2 cache:": "48 MiB (48 instances)", + "L3 cache:": "66 MiB (2 instances)", + "Stepping:": "4", + "L1d cache:": "1.5 MiB (48 instances)", + "L1i cache:": "1.5 MiB (48 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "46 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", + "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", + "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Core(s) per socket:": "24", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", + "On-line CPU(s) list:": "0,1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41-49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89-95", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88", + "Vulnerability Meltdown:": "Mitigation; PTI", + "Vulnerability Retbleed:": "Mitigation; IBRS", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", + "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": 0, + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0, + "num_wires": 4, + "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", + "witness_compiler": "c++" + }, + { + "circuit_id": "25366e22-1f30-4f2b-9c24-b18e1f015e63", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-15T01:25:42.295Z", + "proving_scheme": "groth16", + "status": "Ready", + "compute_time": "P0DT00H00M08.117529S", + "compute_times": { + "total": 8.207875268533826, + "queued": 1.087153, + "clean_up": 0.0015377029776573181, + "create_cpp": 0.04848550260066986, + "file_setup": 0.284574668854475, + "compile_cpp": 4.720001315698028, + "create_r1cs": 0.019293557852506638, + "save_results": 0.005876583978533745, + "get_r1cs_info": 0.0006543230265378952, + "groth16_setup": 1.3807134442031384, + "export_verification_key": 1.7450519409030676, + "download_trusted_setup_file": 0.0012251269072294235 + }, + "file_sizes": { + "total": 225450, + "circuit": 213240, + "total_gb": 0.00022545, + "total_mb": 0.22545, + "circuit.dat": 6176, + "code.tar.gz": 529, + "circuit.zkey": 2580, + "verification_key": 2925 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tgz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", + "Model:": "85", + "CPU(s):": "96", + "BogoMIPS:": "5400.00", + "L2 cache:": "48 MiB (48 instances)", + "L3 cache:": "66 MiB (2 instances)", + "Stepping:": "4", + "L1d cache:": "1.5 MiB (48 instances)", + "L1i cache:": "1.5 MiB (48 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "46 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", + "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", + "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Core(s) per socket:": "24", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", + "On-line CPU(s) list:": "0,1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41-49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89-95", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88", + "Vulnerability Meltdown:": "Mitigation; PTI", + "Vulnerability Retbleed:": "Mitigation; IBRS", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", + "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": 0, + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0, + "num_wires": 4, + "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", + "witness_compiler": "c++" + }, + { + "circuit_id": "d5b7ab09-4ca6-4521-a7db-c4d157012d70", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-15T01:25:42.146Z", + "proving_scheme": "groth16", + "status": "Ready", + "compute_time": "P0DT00H00M07.534592S", + "compute_times": { + "total": 7.610471937805414, + "queued": 1.093385, + "clean_up": 0.0015752967447042465, + "create_cpp": 0.05304797925055027, + "file_setup": 0.26768016442656517, + "compile_cpp": 4.674749160185456, + "create_r1cs": 0.011171292513608932, + "save_results": 0.005162520334124565, + "get_r1cs_info": 0.0006882045418024063, + "groth16_setup": 1.2686850260943174, + "export_verification_key": 1.324827728793025, + "download_trusted_setup_file": 0.002427944913506508 + }, + "file_sizes": { + "total": 225420, + "circuit": 213240, + "total_gb": 0.00022542, + "total_mb": 0.22542, + "circuit.dat": 6176, + "code.tar.gz": 499, + "circuit.zkey": 2580, + "verification_key": 2925 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", + "Model:": "85", + "CPU(s):": "96", + "BogoMIPS:": "5400.00", + "L2 cache:": "48 MiB (48 instances)", + "L3 cache:": "66 MiB (2 instances)", + "Stepping:": "4", + "L1d cache:": "1.5 MiB (48 instances)", + "L1i cache:": "1.5 MiB (48 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "46 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", + "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", + "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Core(s) per socket:": "24", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", + "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", + "Vulnerability Meltdown:": "Mitigation; PTI", + "Vulnerability Retbleed:": "Mitigation; IBRS", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", + "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": 0, + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0, + "num_wires": 4, + "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", + "witness_compiler": "c++" + }, + { + "circuit_id": "259650fb-5b58-4325-a93c-aae8b050e8de", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-15T01:25:41.758Z", + "proving_scheme": "groth16", + "status": "Ready", + "compute_time": "P0DT00H00M07.763101S", + "compute_times": { + "total": 7.8425999116152525, + "queued": 1.180645, + "clean_up": 0.0010943040251731873, + "create_cpp": 0.04768798500299454, + "file_setup": 0.27950611896812916, + "compile_cpp": 4.640486840158701, + "create_r1cs": 0.017582029104232788, + "save_results": 0.005249707028269768, + "get_r1cs_info": 0.0008139610290527344, + "groth16_setup": 1.330995000898838, + "export_verification_key": 1.5162372961640358, + "download_trusted_setup_file": 0.0024677496403455734 + }, + "file_sizes": { + "total": 225418, + "circuit": 213240, + "total_gb": 0.000225418, + "total_mb": 0.225418, + "circuit.dat": 6176, + "code.tar.gz": 497, + "circuit.zkey": 2580, + "verification_key": 2925 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", + "Model:": "85", + "CPU(s):": "96", + "BogoMIPS:": "5400.00", + "L2 cache:": "48 MiB (48 instances)", + "L3 cache:": "66 MiB (2 instances)", + "Stepping:": "4", + "L1d cache:": "1.5 MiB (48 instances)", + "L1i cache:": "1.5 MiB (48 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "46 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", + "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", + "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Core(s) per socket:": "24", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", + "On-line CPU(s) list:": "0,1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41-49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89-95", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88", + "Vulnerability Meltdown:": "Mitigation; PTI", + "Vulnerability Retbleed:": "Mitigation; IBRS", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", + "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": 0, + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0, + "num_wires": 4, + "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", + "witness_compiler": "c++" + }, + { + "circuit_id": "fdd63193-c8f9-44d3-808f-1c141d8943a9", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-15T01:24:08.312Z", + "proving_scheme": "groth16", + "status": "Ready", + "compute_time": "P0DT00H00M07.531226S", + "compute_times": { + "total": 7.6369316056370735, + "queued": 8.365347, + "clean_up": 0.0019285567104816437, + "create_cpp": 0.046893924474716187, + "file_setup": 0.27671243622899055, + "compile_cpp": 4.530390504747629, + "create_r1cs": 0.0143166184425354, + "save_results": 0.0062755923718214035, + "get_r1cs_info": 0.0004708431661128998, + "groth16_setup": 1.3666829708963633, + "export_verification_key": 1.3914693985134363, + "download_trusted_setup_file": 0.0013060756027698517 + }, + "file_sizes": { + "total": 225418, + "circuit": 213240, + "total_gb": 0.000225418, + "total_mb": 0.225418, + "circuit.dat": 6176, + "code.tar.gz": 497, + "circuit.zkey": 2580, + "verification_key": 2925 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", + "Model:": "85", + "CPU(s):": "96", + "BogoMIPS:": "5400.00", + "L2 cache:": "48 MiB (48 instances)", + "L3 cache:": "66 MiB (2 instances)", + "Stepping:": "4", + "L1d cache:": "1.5 MiB (48 instances)", + "L1i cache:": "1.5 MiB (48 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "46 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", + "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", + "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Core(s) per socket:": "24", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", + "On-line CPU(s) list:": "0,1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41-49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89-95", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88", + "Vulnerability Meltdown:": "Mitigation; PTI", + "Vulnerability Retbleed:": "Mitigation; IBRS", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", + "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": 0, + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0, + "num_wires": 4, + "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", + "witness_compiler": "c++" + }, + { + "circuit_id": "904ee935-e47f-4e51-b8af-4fa75cc308f7", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-15T01:24:07.917Z", + "proving_scheme": "groth16", + "status": "Ready", + "compute_time": "P0DT00H00M08.578702S", + "compute_times": { + "total": 8.665514579042792, + "queued": 1.330868, + "clean_up": 0.0017162077128887177, + "create_cpp": 0.054726479575037956, + "file_setup": 0.2634403742849827, + "compile_cpp": 5.288504149764776, + "create_r1cs": 0.008948137983679771, + "save_results": 0.005719773471355438, + "get_r1cs_info": 0.0004977621138095856, + "groth16_setup": 1.6173019856214523, + "export_verification_key": 1.4229414779692888, + "download_trusted_setup_file": 0.0012561678886413574 + }, + "file_sizes": { + "total": 225418, + "circuit": 213240, + "total_gb": 0.000225418, + "total_mb": 0.225418, + "circuit.dat": 6176, + "code.tar.gz": 497, + "circuit.zkey": 2580, + "verification_key": 2925 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", + "Model:": "85", + "CPU(s):": "96", + "BogoMIPS:": "5400.00", + "L2 cache:": "48 MiB (48 instances)", + "L3 cache:": "66 MiB (2 instances)", + "Stepping:": "4", + "L1d cache:": "1.5 MiB (48 instances)", + "L1i cache:": "1.5 MiB (48 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "46 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", + "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", + "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Core(s) per socket:": "24", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", + "On-line CPU(s) list:": "0,1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41-49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89-95", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88", + "Vulnerability Meltdown:": "Mitigation; PTI", + "Vulnerability Retbleed:": "Mitigation; IBRS", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", + "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": 0, + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0, + "num_wires": 4, + "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", + "witness_compiler": "c++" + }, + { + "circuit_id": "eb7be2ed-0d7e-4036-a5dc-3b36b0d9907c", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-15T01:24:07.224Z", + "proving_scheme": "groth16", + "status": "Ready", + "compute_time": "P0DT00H00M08.530179S", + "compute_times": { + "total": 8.615118628367782, + "queued": 1.275027, + "clean_up": 0.0011486634612083435, + "create_cpp": 0.05415670946240425, + "file_setup": 0.26388018019497395, + "compile_cpp": 4.947564886882901, + "create_r1cs": 0.011440899223089218, + "save_results": 0.0037490390241146088, + "get_r1cs_info": 0.0004730690270662308, + "groth16_setup": 1.862619386985898, + "export_verification_key": 1.4681414254009724, + "download_trusted_setup_file": 0.0015218798071146011 + }, + "file_sizes": { + "total": 225450, + "circuit": 213240, + "total_gb": 0.00022545, + "total_mb": 0.22545, + "circuit.dat": 6176, + "code.tar.gz": 529, + "circuit.zkey": 2580, + "verification_key": 2925 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tgz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", + "Model:": "85", + "CPU(s):": "96", + "BogoMIPS:": "5400.00", + "L2 cache:": "48 MiB (48 instances)", + "L3 cache:": "66 MiB (2 instances)", + "Stepping:": "4", + "L1d cache:": "1.5 MiB (48 instances)", + "L1i cache:": "1.5 MiB (48 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "46 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", + "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", + "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Core(s) per socket:": "24", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", + "On-line CPU(s) list:": "0,1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41-49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89-95", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88", + "Vulnerability Meltdown:": "Mitigation; PTI", + "Vulnerability Retbleed:": "Mitigation; IBRS", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", + "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": 0, + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0, + "num_wires": 4, + "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", + "witness_compiler": "c++" + }, + { + "circuit_id": "a379c18b-369a-44db-aad6-85af9e6bb9cb", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-15T01:24:06.762Z", + "proving_scheme": "groth16", + "status": "Ready", + "compute_time": "P0DT00H00M07.830370S", + "compute_times": { + "total": 7.921309085562825, + "queued": 1.088554, + "clean_up": 0.0007459353655576706, + "create_cpp": 0.047761064022779465, + "file_setup": 0.2782799396663904, + "compile_cpp": 4.597128139808774, + "create_r1cs": 0.011429710313677788, + "save_results": 0.0036425814032554626, + "get_r1cs_info": 0.0006814338266849518, + "groth16_setup": 1.4388698264956474, + "export_verification_key": 1.5397362746298313, + "download_trusted_setup_file": 0.0024739503860473633 + }, + "file_sizes": { + "total": 225418, + "circuit": 213240, + "total_gb": 0.000225418, + "total_mb": 0.225418, + "circuit.dat": 6176, + "code.tar.gz": 497, + "circuit.zkey": 2580, + "verification_key": 2925 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", + "Model:": "85", + "CPU(s):": "96", + "BogoMIPS:": "5400.00", + "L2 cache:": "48 MiB (48 instances)", + "L3 cache:": "66 MiB (2 instances)", + "Stepping:": "4", + "L1d cache:": "1.5 MiB (48 instances)", + "L1i cache:": "1.5 MiB (48 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "46 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", + "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", + "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Core(s) per socket:": "24", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", + "On-line CPU(s) list:": "0,1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41-49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89-95", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88", + "Vulnerability Meltdown:": "Mitigation; PTI", + "Vulnerability Retbleed:": "Mitigation; IBRS", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", + "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": 0, + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0, + "num_wires": 4, + "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", + "witness_compiler": "c++" + }, + { + "circuit_id": "d040cbc0-5324-4999-b9fd-1c1377b68a5c", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-15T01:24:06.594Z", + "proving_scheme": "groth16", + "status": "Ready", + "compute_time": "P0DT00H00M07.915835S", + "compute_times": { + "total": 7.990416899323463, + "queued": 1.043149, + "clean_up": 0.0017143674194812775, + "create_cpp": 0.04796867072582245, + "file_setup": 0.23446950316429138, + "compile_cpp": 4.777510790154338, + "create_r1cs": 0.017401328310370445, + "save_results": 0.0054901354014873505, + "get_r1cs_info": 0.0009919870644807816, + "groth16_setup": 1.4934867825359106, + "export_verification_key": 1.4077130891382694, + "download_trusted_setup_file": 0.00322798453271389 + }, + "file_sizes": { + "total": 225450, + "circuit": 213240, + "total_gb": 0.00022545, + "total_mb": 0.22545, + "circuit.dat": 6176, + "code.tar.gz": 529, + "circuit.zkey": 2580, + "verification_key": 2925 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tgz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", + "Model:": "85", + "CPU(s):": "96", + "BogoMIPS:": "5400.00", + "L2 cache:": "48 MiB (48 instances)", + "L3 cache:": "66 MiB (2 instances)", + "Stepping:": "4", + "L1d cache:": "1.5 MiB (48 instances)", + "L1i cache:": "1.5 MiB (48 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "46 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", + "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", + "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Core(s) per socket:": "24", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", + "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", + "Vulnerability Meltdown:": "Mitigation; PTI", + "Vulnerability Retbleed:": "Mitigation; IBRS", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", + "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": 0, + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0, + "num_wires": 4, + "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", + "witness_compiler": "c++" + }, + { + "circuit_id": "ec4c4efa-85f5-4706-98f5-c074c42fdd6a", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-15T01:24:06.301Z", + "proving_scheme": "groth16", + "status": "Ready", + "compute_time": "P0DT00H00M07.731619S", + "compute_times": { + "total": 7.811778577044606, + "queued": 1.204783, + "clean_up": 0.001674732193350792, + "create_cpp": 0.041051892563700676, + "file_setup": 0.252486540004611, + "compile_cpp": 4.601586431264877, + "create_r1cs": 0.016725540161132812, + "save_results": 0.006723517552018166, + "get_r1cs_info": 0.0007968861609697342, + "groth16_setup": 1.3249811921268702, + "export_verification_key": 1.5628648214042187, + "download_trusted_setup_file": 0.0024388227611780167 + }, + "file_sizes": { + "total": 225420, + "circuit": 213240, + "total_gb": 0.00022542, + "total_mb": 0.22542, + "circuit.dat": 6176, + "code.tar.gz": 499, + "circuit.zkey": 2580, + "verification_key": 2925 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", + "Model:": "85", + "CPU(s):": "96", + "BogoMIPS:": "5400.00", + "L2 cache:": "48 MiB (48 instances)", + "L3 cache:": "66 MiB (2 instances)", + "Stepping:": "4", + "L1d cache:": "1.5 MiB (48 instances)", + "L1i cache:": "1.5 MiB (48 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "46 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", + "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", + "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Core(s) per socket:": "24", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", + "On-line CPU(s) list:": "0,1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41-49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89-95", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88", + "Vulnerability Meltdown:": "Mitigation; PTI", + "Vulnerability Retbleed:": "Mitigation; IBRS", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", + "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": 0, + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0, + "num_wires": 4, + "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", + "witness_compiler": "c++" + }, + { + "circuit_id": "a89d05b7-2a7f-48de-8017-c628dfdfbc8b", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-15T01:20:47.917Z", + "proving_scheme": "groth16", + "status": "Ready", + "compute_time": "P0DT00H00M07.789579S", + "compute_times": { + "total": 7.86683814227581, + "queued": 25.35176, + "clean_up": 0.0017080958932638168, + "create_cpp": 0.049080340191721916, + "file_setup": 0.2709489520639181, + "compile_cpp": 4.813403956592083, + "create_r1cs": 0.01896231807768345, + "save_results": 0.005731154233217239, + "get_r1cs_info": 0.0008451472967863083, + "groth16_setup": 1.3692182656377554, + "export_verification_key": 1.3333069793879986, + "download_trusted_setup_file": 0.0029204636812210083 + }, + "file_sizes": { + "total": 225418, + "circuit": 213240, + "total_gb": 0.000225418, + "total_mb": 0.225418, + "circuit.dat": 6176, + "code.tar.gz": 497, + "circuit.zkey": 2580, + "verification_key": 2925 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", + "Model:": "85", + "CPU(s):": "96", + "BogoMIPS:": "5400.00", + "L2 cache:": "48 MiB (48 instances)", + "L3 cache:": "66 MiB (2 instances)", + "Stepping:": "4", + "L1d cache:": "1.5 MiB (48 instances)", + "L1i cache:": "1.5 MiB (48 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "46 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", + "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", + "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Core(s) per socket:": "24", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", + "On-line CPU(s) list:": "0,1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41-49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89-95", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88", + "Vulnerability Meltdown:": "Mitigation; PTI", + "Vulnerability Retbleed:": "Mitigation; IBRS", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", + "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": 0, + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0, + "num_wires": 4, + "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", + "witness_compiler": "c++" + }, + { + "circuit_id": "fb9804ea-e593-4510-b89a-b98a0011e155", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-15T01:20:47.325Z", + "proving_scheme": "groth16", + "status": "Ready", + "compute_time": "P0DT00H00M07.584035S", + "compute_times": { + "total": 7.674813883379102, + "queued": 23.350262, + "clean_up": 0.00165599025785923, + "create_cpp": 0.05108293518424034, + "file_setup": 0.2647382654249668, + "compile_cpp": 4.588076556101441, + "create_r1cs": 0.01682026870548725, + "save_results": 0.006049007177352905, + "get_r1cs_info": 0.0008010715246200562, + "groth16_setup": 1.3996620196849108, + "export_verification_key": 1.3428493328392506, + "download_trusted_setup_file": 0.002526400610804558 + }, + "file_sizes": { + "total": 225450, + "circuit": 213240, + "total_gb": 0.00022545, + "total_mb": 0.22545, + "circuit.dat": 6176, + "code.tar.gz": 529, + "circuit.zkey": 2580, + "verification_key": 2925 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tgz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", + "Model:": "85", + "CPU(s):": "96", + "BogoMIPS:": "5400.00", + "L2 cache:": "48 MiB (48 instances)", + "L3 cache:": "66 MiB (2 instances)", + "Stepping:": "4", + "L1d cache:": "1.5 MiB (48 instances)", + "L1i cache:": "1.5 MiB (48 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "46 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", + "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", + "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Core(s) per socket:": "24", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", + "On-line CPU(s) list:": "0,1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41-49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89-95", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88", + "Vulnerability Meltdown:": "Mitigation; PTI", + "Vulnerability Retbleed:": "Mitigation; IBRS", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", + "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": 0, + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0, + "num_wires": 4, + "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", + "witness_compiler": "c++" + }, + { + "circuit_id": "11e78b06-44fb-44b4-b85f-d681e677482c", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-15T01:20:46.978Z", + "proving_scheme": "groth16", + "status": "Ready", + "compute_time": "P0DT00H00M07.813443S", + "compute_times": { + "total": 7.886057889088988, + "queued": 17.997581, + "clean_up": 0.0019489061087369919, + "create_cpp": 0.04485638998448849, + "file_setup": 0.23824510909616947, + "compile_cpp": 4.771794518455863, + "create_r1cs": 0.017174607142806053, + "save_results": 0.005540786311030388, + "get_r1cs_info": 0.0006840340793132782, + "groth16_setup": 1.3794465400278568, + "export_verification_key": 1.4234893918037415, + "download_trusted_setup_file": 0.002448735758662224 + }, + "file_sizes": { + "total": 225450, + "circuit": 213240, + "total_gb": 0.00022545, + "total_mb": 0.22545, + "circuit.dat": 6176, + "code.tar.gz": 529, + "circuit.zkey": 2580, + "verification_key": 2925 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tgz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", + "Model:": "85", + "CPU(s):": "96", + "BogoMIPS:": "5400.00", + "L2 cache:": "48 MiB (48 instances)", + "L3 cache:": "66 MiB (2 instances)", + "Stepping:": "4", + "L1d cache:": "1.5 MiB (48 instances)", + "L1i cache:": "1.5 MiB (48 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "46 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", + "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", + "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Core(s) per socket:": "24", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", + "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", + "Vulnerability Meltdown:": "Mitigation; PTI", + "Vulnerability Retbleed:": "Mitigation; IBRS", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", + "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": 0, + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0, + "num_wires": 4, + "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", + "witness_compiler": "c++" + }, + { + "circuit_id": "4e253e9d-53bb-4dc3-a7ae-3f7c845833c9", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-15T01:20:46.598Z", + "proving_scheme": "groth16", + "status": "Ready", + "compute_time": "P0DT00H00M07.749153S", + "compute_times": { + "total": 7.8208857625722885, + "queued": 9.451752, + "clean_up": 0.0019070468842983246, + "create_cpp": 0.04770251177251339, + "file_setup": 0.23707264475524426, + "compile_cpp": 4.817640336230397, + "create_r1cs": 0.018378887325525284, + "save_results": 0.005359206348657608, + "get_r1cs_info": 0.0008528921753168106, + "groth16_setup": 1.3206407614052296, + "export_verification_key": 1.3683953396975994, + "download_trusted_setup_file": 0.002521853893995285 + }, + "file_sizes": { + "total": 225418, + "circuit": 213240, + "total_gb": 0.000225418, + "total_mb": 0.225418, + "circuit.dat": 6176, + "code.tar.gz": 497, + "circuit.zkey": 2580, + "verification_key": 2925 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", + "Model:": "85", + "CPU(s):": "96", + "BogoMIPS:": "5400.00", + "L2 cache:": "48 MiB (48 instances)", + "L3 cache:": "66 MiB (2 instances)", + "Stepping:": "4", + "L1d cache:": "1.5 MiB (48 instances)", + "L1i cache:": "1.5 MiB (48 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "46 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", + "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", + "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Core(s) per socket:": "24", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", + "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", + "Vulnerability Meltdown:": "Mitigation; PTI", + "Vulnerability Retbleed:": "Mitigation; IBRS", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", + "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": 0, + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0, + "num_wires": 4, + "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", + "witness_compiler": "c++" + }, + { + "circuit_id": "50a969b6-0f0e-4066-818e-0d6bee58a675", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-15T01:20:46.380Z", + "proving_scheme": "groth16", + "status": "Ready", + "compute_time": "P0DT00H00M07.412180S", + "compute_times": { + "total": 7.489693740382791, + "queued": 1.076624, + "clean_up": 0.0017442163079977036, + "create_cpp": 0.049648238345980644, + "file_setup": 0.23472837172448635, + "compile_cpp": 4.6169865392148495, + "create_r1cs": 0.01770802214741707, + "save_results": 0.005789747461676598, + "get_r1cs_info": 0.000413551926612854, + "groth16_setup": 1.244078028947115, + "export_verification_key": 1.3168906792998314, + "download_trusted_setup_file": 0.0012542679905891418 + }, + "file_sizes": { + "total": 225420, + "circuit": 213240, + "total_gb": 0.00022542, + "total_mb": 0.22542, + "circuit.dat": 6176, + "code.tar.gz": 499, + "circuit.zkey": 2580, + "verification_key": 2925 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", + "Model:": "85", + "CPU(s):": "96", + "BogoMIPS:": "5400.00", + "L2 cache:": "48 MiB (48 instances)", + "L3 cache:": "66 MiB (2 instances)", + "Stepping:": "4", + "L1d cache:": "1.5 MiB (48 instances)", + "L1i cache:": "1.5 MiB (48 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "46 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", + "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", + "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Core(s) per socket:": "24", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", + "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", + "Vulnerability Meltdown:": "Mitigation; PTI", + "Vulnerability Retbleed:": "Mitigation; IBRS", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", + "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": 0, + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0, + "num_wires": 4, + "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", + "witness_compiler": "c++" + }, + { + "circuit_id": "8b80ca27-37f0-4a48-b203-3e2d185edd90", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-15T01:10:52.340Z", + "proving_scheme": "groth16", + "status": "Ready", + "compute_time": "P0DT00H00M07.883228S", + "compute_times": { + "total": 7.962817557156086, + "queued": 30.893441, + "clean_up": 0.0015963222831487656, + "create_cpp": 0.05661488324403763, + "file_setup": 0.26580186001956463, + "compile_cpp": 4.7885665241628885, + "create_r1cs": 0.017876187339425087, + "save_results": 0.005185702815651894, + "get_r1cs_info": 0.0006853118538856506, + "groth16_setup": 1.458715070039034, + "export_verification_key": 1.3646998051553965, + "download_trusted_setup_file": 0.002479085698723793 + }, + "file_sizes": { + "total": 225418, + "circuit": 213240, + "total_gb": 0.000225418, + "total_mb": 0.225418, + "circuit.dat": 6176, + "code.tar.gz": 497, + "circuit.zkey": 2580, + "verification_key": 2925 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", + "Model:": "85", + "CPU(s):": "96", + "BogoMIPS:": "5400.00", + "L2 cache:": "48 MiB (48 instances)", + "L3 cache:": "66 MiB (2 instances)", + "Stepping:": "4", + "L1d cache:": "1.5 MiB (48 instances)", + "L1i cache:": "1.5 MiB (48 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "46 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", + "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", + "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Core(s) per socket:": "24", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", + "On-line CPU(s) list:": "0,1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41-49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89-95", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88", + "Vulnerability Meltdown:": "Mitigation; PTI", + "Vulnerability Retbleed:": "Mitigation; IBRS", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", + "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": 0, + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0, + "num_wires": 4, + "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", + "witness_compiler": "c++" + }, + { + "circuit_id": "ff738348-86c5-4a5b-bbf5-f59ebacaa83f", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-15T01:10:51.149Z", + "proving_scheme": "groth16", + "status": "Ready", + "compute_time": "P0DT00H00M07.795750S", + "compute_times": { + "total": 7.888047279790044, + "queued": 29.425801, + "clean_up": 0.0008769631385803223, + "create_cpp": 0.05921477451920509, + "file_setup": 0.25372832454741, + "compile_cpp": 4.736947797238827, + "create_r1cs": 0.01815476454794407, + "save_results": 0.004680829122662544, + "get_r1cs_info": 0.0006990842521190643, + "groth16_setup": 1.3821367472410202, + "export_verification_key": 1.4278872478753328, + "download_trusted_setup_file": 0.002650303766131401 + }, + "file_sizes": { + "total": 225420, + "circuit": 213240, + "total_gb": 0.00022542, + "total_mb": 0.22542, + "circuit.dat": 6176, + "code.tar.gz": 499, + "circuit.zkey": 2580, + "verification_key": 2925 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", + "Model:": "85", + "CPU(s):": "96", + "BogoMIPS:": "5400.00", + "L2 cache:": "48 MiB (48 instances)", + "L3 cache:": "66 MiB (2 instances)", + "Stepping:": "4", + "L1d cache:": "1.5 MiB (48 instances)", + "L1i cache:": "1.5 MiB (48 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "46 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", + "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", + "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Core(s) per socket:": "24", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", + "On-line CPU(s) list:": "0,1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41-49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89-95", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88", + "Vulnerability Meltdown:": "Mitigation; PTI", + "Vulnerability Retbleed:": "Mitigation; IBRS", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", + "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": 0, + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0, + "num_wires": 4, + "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", + "witness_compiler": "c++" + }, + { + "circuit_id": "bd06acf7-db8e-4e1b-add1-78e51aa51bbe", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-15T01:10:50.720Z", + "proving_scheme": "groth16", + "status": "Ready", + "compute_time": "P0DT00H00M07.390978S", + "compute_times": { + "total": 7.46995716355741, + "queued": 29.832962, + "clean_up": 0.00176163949072361, + "create_cpp": 0.05480833351612091, + "file_setup": 0.23235405422747135, + "compile_cpp": 4.604168305173516, + "create_r1cs": 0.017065662890672684, + "save_results": 0.005929179489612579, + "get_r1cs_info": 0.0009844768792390823, + "groth16_setup": 1.2335669491440058, + "export_verification_key": 1.3159250803291798, + "download_trusted_setup_file": 0.003006463870406151 + }, + "file_sizes": { + "total": 225418, + "circuit": 213240, + "total_gb": 0.000225418, + "total_mb": 0.225418, + "circuit.dat": 6176, + "code.tar.gz": 497, + "circuit.zkey": 2580, + "verification_key": 2925 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", + "Model:": "85", + "CPU(s):": "96", + "BogoMIPS:": "5400.00", + "L2 cache:": "48 MiB (48 instances)", + "L3 cache:": "66 MiB (2 instances)", + "Stepping:": "4", + "L1d cache:": "1.5 MiB (48 instances)", + "L1i cache:": "1.5 MiB (48 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "46 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", + "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", + "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Core(s) per socket:": "24", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", + "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", + "Vulnerability Meltdown:": "Mitigation; PTI", + "Vulnerability Retbleed:": "Mitigation; IBRS", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", + "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": 0, + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0, + "num_wires": 4, + "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", + "witness_compiler": "c++" + }, + { + "circuit_id": "afcb9e22-9f99-41d0-9901-af4903b766b4", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-15T01:10:50.518Z", + "proving_scheme": "groth16", + "status": "Ready", + "compute_time": "P0DT00H00M07.546432S", + "compute_times": { + "total": 7.620507316663861, + "queued": 21.381816, + "clean_up": 0.0019138902425765991, + "create_cpp": 0.04845607653260231, + "file_setup": 0.22649670392274857, + "compile_cpp": 4.595834456384182, + "create_r1cs": 0.017602143809199333, + "save_results": 0.006120938807725906, + "get_r1cs_info": 0.0006583519279956818, + "groth16_setup": 1.3733069580048323, + "export_verification_key": 1.3470811117440462, + "download_trusted_setup_file": 0.002516990527510643 + }, + "file_sizes": { + "total": 225450, + "circuit": 213240, + "total_gb": 0.00022545, + "total_mb": 0.22545, + "circuit.dat": 6176, + "code.tar.gz": 529, + "circuit.zkey": 2580, + "verification_key": 2925 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tgz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", + "Model:": "85", + "CPU(s):": "96", + "BogoMIPS:": "5400.00", + "L2 cache:": "48 MiB (48 instances)", + "L3 cache:": "66 MiB (2 instances)", + "Stepping:": "4", + "L1d cache:": "1.5 MiB (48 instances)", + "L1i cache:": "1.5 MiB (48 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "46 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", + "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", + "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Core(s) per socket:": "24", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", + "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", + "Vulnerability Meltdown:": "Mitigation; PTI", + "Vulnerability Retbleed:": "Mitigation; IBRS", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", + "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": 0, + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0, + "num_wires": 4, + "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", + "witness_compiler": "c++" + }, + { + "circuit_id": "c3c2e5be-17ce-49c9-a590-17a34dae5b43", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-14T22:01:38.831Z", + "proving_scheme": "groth16", + "status": "Ready", + "compute_time": "P0DT00H00M07.495982S", + "compute_times": { + "total": 7.583129834383726, + "queued": 9.308287, + "clean_up": 0.0016463026404380798, + "create_cpp": 0.048509422689676285, + "file_setup": 0.2788010146468878, + "compile_cpp": 4.499293332919478, + "create_r1cs": 0.008868083357810974, + "save_results": 0.006020659580826759, + "get_r1cs_info": 0.0004023592919111252, + "groth16_setup": 1.3391796126961708, + "export_verification_key": 1.3986896388232708, + "download_trusted_setup_file": 0.0012662895023822784 + }, + "file_sizes": { + "total": 225418, + "circuit": 213240, + "total_gb": 0.000225418, + "total_mb": 0.225418, + "circuit.dat": 6176, + "code.tar.gz": 497, + "circuit.zkey": 2580, + "verification_key": 2925 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", + "Model:": "85", + "CPU(s):": "96", + "BogoMIPS:": "5400.00", + "L2 cache:": "48 MiB (48 instances)", + "L3 cache:": "66 MiB (2 instances)", + "Stepping:": "4", + "L1d cache:": "1.5 MiB (48 instances)", + "L1i cache:": "1.5 MiB (48 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "46 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", + "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", + "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Core(s) per socket:": "24", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", + "On-line CPU(s) list:": "0,1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41-49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89-95", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88", + "Vulnerability Meltdown:": "Mitigation; PTI", + "Vulnerability Retbleed:": "Mitigation; IBRS", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", + "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": 0, + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0, + "num_wires": 4, + "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", + "witness_compiler": "c++" + }, + { + "circuit_id": "594d795b-4e83-4bdc-9384-adc6dc579063", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-14T22:01:38.077Z", + "proving_scheme": "groth16", + "status": "Ready", + "compute_time": "P0DT00H00M07.994296S", + "compute_times": { + "total": 8.085218539461493, + "queued": 1.072056, + "clean_up": 0.0018068403005599976, + "create_cpp": 0.04692729189991951, + "file_setup": 0.24390947446227074, + "compile_cpp": 4.863685358315706, + "create_r1cs": 0.015030544251203537, + "save_results": 0.006564289331436157, + "get_r1cs_info": 0.0005463734269142151, + "groth16_setup": 1.4818106144666672, + "export_verification_key": 1.4225131068378687, + "download_trusted_setup_file": 0.0018362998962402344 + }, + "file_sizes": { + "total": 225450, + "circuit": 213240, + "total_gb": 0.00022545, + "total_mb": 0.22545, + "circuit.dat": 6176, + "code.tar.gz": 529, + "circuit.zkey": 2580, + "verification_key": 2925 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tgz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", + "Model:": "85", + "CPU(s):": "96", + "BogoMIPS:": "5400.00", + "L2 cache:": "48 MiB (48 instances)", + "L3 cache:": "66 MiB (2 instances)", + "Stepping:": "4", + "L1d cache:": "1.5 MiB (48 instances)", + "L1i cache:": "1.5 MiB (48 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "46 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", + "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", + "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Core(s) per socket:": "24", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", + "On-line CPU(s) list:": "0,1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41-49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89-95", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88", + "Vulnerability Meltdown:": "Mitigation; PTI", + "Vulnerability Retbleed:": "Mitigation; IBRS", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", + "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": 0, + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0, + "num_wires": 4, + "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", + "witness_compiler": "c++" + }, + { + "circuit_id": "cc3da49e-2510-421d-867f-012f50ee430c", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-14T22:01:37.920Z", + "proving_scheme": "groth16", + "status": "Ready", + "compute_time": "P0DT00H00M07.896573S", + "compute_times": { + "total": 7.971910724416375, + "queued": 1.115917, + "clean_up": 0.0015832837671041489, + "create_cpp": 0.03922662511467934, + "file_setup": 0.24468977935612202, + "compile_cpp": 4.67575691267848, + "create_r1cs": 0.01803159900009632, + "save_results": 0.005611082538962364, + "get_r1cs_info": 0.0004954636096954346, + "groth16_setup": 1.507937928661704, + "export_verification_key": 1.4767322856932878, + "download_trusted_setup_file": 0.0013241283595561981 + }, + "file_sizes": { + "total": 225426, + "circuit": 213240, + "total_gb": 0.000225426, + "total_mb": 0.225426, + "circuit.dat": 6176, + "code.tar.gz": 505, + "circuit.zkey": 2580, + "verification_key": 2925 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", + "Model:": "85", + "CPU(s):": "96", + "BogoMIPS:": "5400.00", + "L2 cache:": "48 MiB (48 instances)", + "L3 cache:": "66 MiB (2 instances)", + "Stepping:": "4", + "L1d cache:": "1.5 MiB (48 instances)", + "L1i cache:": "1.5 MiB (48 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "46 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", + "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", + "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Core(s) per socket:": "24", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", + "On-line CPU(s) list:": "0,1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41-49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89-95", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88", + "Vulnerability Meltdown:": "Mitigation; PTI", + "Vulnerability Retbleed:": "Mitigation; IBRS", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", + "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": 0, + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0, + "num_wires": 4, + "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", + "witness_compiler": "c++" + }, + { + "circuit_id": "64c96c11-dba7-4189-aa14-9aecfedddd24", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-14T22:01:37.888Z", + "proving_scheme": "groth16", + "status": "Ready", + "compute_time": "P0DT00H00M08.498334S", + "compute_times": { + "total": 8.571772133931518, + "queued": 1.074783, + "clean_up": 0.0019186809659004211, + "create_cpp": 0.054686328396201134, + "file_setup": 0.2371922954916954, + "compile_cpp": 5.385636718943715, + "create_r1cs": 0.01953158527612686, + "save_results": 0.00620056688785553, + "get_r1cs_info": 0.0007338318973779678, + "groth16_setup": 1.5156110264360905, + "export_verification_key": 1.3472961355000734, + "download_trusted_setup_file": 0.0024816375225782394 + }, + "file_sizes": { + "total": 225418, + "circuit": 213240, + "total_gb": 0.000225418, + "total_mb": 0.225418, + "circuit.dat": 6176, + "code.tar.gz": 497, + "circuit.zkey": 2580, + "verification_key": 2925 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", + "Model:": "85", + "CPU(s):": "96", + "BogoMIPS:": "5400.00", + "L2 cache:": "48 MiB (48 instances)", + "L3 cache:": "66 MiB (2 instances)", + "Stepping:": "4", + "L1d cache:": "1.5 MiB (48 instances)", + "L1i cache:": "1.5 MiB (48 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "46 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", + "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", + "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Core(s) per socket:": "24", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", + "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", + "Vulnerability Meltdown:": "Mitigation; PTI", + "Vulnerability Retbleed:": "Mitigation; IBRS", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", + "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": 0, + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0, + "num_wires": 4, + "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", + "witness_compiler": "c++" + }, + { + "circuit_id": "37c2d797-16be-44b3-af1f-25f921d56027", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-14T22:00:47.710Z", + "proving_scheme": "groth16", + "status": "Ready", + "compute_time": "P0DT00H00M07.442405S", + "compute_times": { + "total": 7.519877161830664, + "queued": 18.163234, + "clean_up": 0.0016106609255075455, + "create_cpp": 0.04706509783864021, + "file_setup": 0.2573662418872118, + "compile_cpp": 4.5406668819487095, + "create_r1cs": 0.010846516117453575, + "save_results": 0.0050650909543037415, + "get_r1cs_info": 0.0006506964564323425, + "groth16_setup": 1.2932439744472504, + "export_verification_key": 1.3604716714471579, + "download_trusted_setup_file": 0.0025113988667726517 + }, + "file_sizes": { + "total": 225426, + "circuit": 213240, + "total_gb": 0.000225426, + "total_mb": 0.225426, + "circuit.dat": 6176, + "code.tar.gz": 505, + "circuit.zkey": 2580, + "verification_key": 2925 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", + "Model:": "85", + "CPU(s):": "96", + "BogoMIPS:": "5400.00", + "L2 cache:": "48 MiB (48 instances)", + "L3 cache:": "66 MiB (2 instances)", + "Stepping:": "4", + "L1d cache:": "1.5 MiB (48 instances)", + "L1i cache:": "1.5 MiB (48 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "46 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", + "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", + "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Core(s) per socket:": "24", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", + "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", + "Vulnerability Meltdown:": "Mitigation; PTI", + "Vulnerability Retbleed:": "Mitigation; IBRS", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", + "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": 0, + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0, + "num_wires": 4, + "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", + "witness_compiler": "c++" + }, + { + "circuit_id": "64245855-4d0a-4a37-8ac5-5cd8fafd4df6", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-14T22:00:47.196Z", + "proving_scheme": "groth16", + "status": "Ready", + "compute_time": "P0DT00H00M07.598393S", + "compute_times": { + "total": 7.670226508751512, + "queued": 9.858631, + "clean_up": 0.0017396323382854462, + "create_cpp": 0.056736381724476814, + "file_setup": 0.2335924208164215, + "compile_cpp": 4.717564798891544, + "create_r1cs": 0.01664743758738041, + "save_results": 0.00606883130967617, + "get_r1cs_info": 0.0007533375173807144, + "groth16_setup": 1.2358768321573734, + "export_verification_key": 1.3982864208519459, + "download_trusted_setup_file": 0.0024993102997541428 + }, + "file_sizes": { + "total": 225418, + "circuit": 213240, + "total_gb": 0.000225418, + "total_mb": 0.225418, + "circuit.dat": 6176, + "code.tar.gz": 497, + "circuit.zkey": 2580, + "verification_key": 2925 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", + "Model:": "85", + "CPU(s):": "96", + "BogoMIPS:": "5400.00", + "L2 cache:": "48 MiB (48 instances)", + "L3 cache:": "66 MiB (2 instances)", + "Stepping:": "4", + "L1d cache:": "1.5 MiB (48 instances)", + "L1i cache:": "1.5 MiB (48 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "46 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", + "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", + "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Core(s) per socket:": "24", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", + "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", + "Vulnerability Meltdown:": "Mitigation; PTI", + "Vulnerability Retbleed:": "Mitigation; IBRS", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", + "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": 0, + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0, + "num_wires": 4, + "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", + "witness_compiler": "c++" + }, + { + "circuit_id": "67f4649b-cef0-48a9-853e-08bc9071a422", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-14T22:00:47.135Z", + "proving_scheme": "groth16", + "status": "Ready", + "compute_time": "P0DT00H00M07.668392S", + "compute_times": { + "total": 7.747372977435589, + "queued": 1.05809, + "clean_up": 0.001848604530096054, + "create_cpp": 0.04929644614458084, + "file_setup": 0.22854838147759438, + "compile_cpp": 4.640512635931373, + "create_r1cs": 0.015147404745221138, + "save_results": 0.005650337785482407, + "get_r1cs_info": 0.0006706751883029938, + "groth16_setup": 1.3484645150601864, + "export_verification_key": 1.4543015789240599, + "download_trusted_setup_file": 0.002453230321407318 + }, + "file_sizes": { + "total": 225450, + "circuit": 213240, + "total_gb": 0.00022545, + "total_mb": 0.22545, + "circuit.dat": 6176, + "code.tar.gz": 529, + "circuit.zkey": 2580, + "verification_key": 2925 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tgz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", + "Model:": "85", + "CPU(s):": "96", + "BogoMIPS:": "5400.00", + "L2 cache:": "48 MiB (48 instances)", + "L3 cache:": "66 MiB (2 instances)", + "Stepping:": "4", + "L1d cache:": "1.5 MiB (48 instances)", + "L1i cache:": "1.5 MiB (48 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "46 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", + "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", + "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Core(s) per socket:": "24", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", + "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", + "Vulnerability Meltdown:": "Mitigation; PTI", + "Vulnerability Retbleed:": "Mitigation; IBRS", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", + "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": 0, + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0, + "num_wires": 4, + "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", + "witness_compiler": "c++" + }, + { + "circuit_id": "7a70a5ab-e8ed-4f4b-86e7-6b4fee6732b5", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-14T21:59:59.139Z", + "proving_scheme": "groth16", + "status": "Ready", + "compute_time": "P0DT00H00M07.396312S", + "compute_times": { + "total": 7.46887100674212, + "queued": 18.652859, + "clean_up": 0.0016880836337804794, + "create_cpp": 0.042848482728004456, + "file_setup": 0.22210602462291718, + "compile_cpp": 4.473998909816146, + "create_r1cs": 0.018347671255469322, + "save_results": 0.005641408264636993, + "get_r1cs_info": 0.0005728006362915039, + "groth16_setup": 1.427965046837926, + "export_verification_key": 1.2737494725733995, + "download_trusted_setup_file": 0.0014454666525125504 + }, + "file_sizes": { + "total": 225426, + "circuit": 213240, + "total_gb": 0.000225426, + "total_mb": 0.225426, + "circuit.dat": 6176, + "code.tar.gz": 505, + "circuit.zkey": 2580, + "verification_key": 2925 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", + "Model:": "85", + "CPU(s):": "96", + "BogoMIPS:": "5400.00", + "L2 cache:": "48 MiB (48 instances)", + "L3 cache:": "66 MiB (2 instances)", + "Stepping:": "4", + "L1d cache:": "1.5 MiB (48 instances)", + "L1i cache:": "1.5 MiB (48 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "46 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", + "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", + "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Core(s) per socket:": "24", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", + "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", + "Vulnerability Meltdown:": "Mitigation; PTI", + "Vulnerability Retbleed:": "Mitigation; IBRS", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", + "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": 0, + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0, + "num_wires": 4, + "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", + "witness_compiler": "c++" + }, + { + "circuit_id": "1d2b65a6-0b62-46f1-8552-e5d306b8e5a9", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-14T18:46:18.351Z", + "proving_scheme": "groth16", + "status": "Ready", + "compute_time": "P0DT00H00M08.072504S", + "compute_times": { + "total": 8.165413077920675, + "queued": 1.073288, + "clean_up": 0.001566711813211441, + "create_cpp": 0.04813777469098568, + "file_setup": 0.273874131962657, + "compile_cpp": 4.797466650605202, + "create_r1cs": 0.012367704883217812, + "save_results": 0.005589749664068222, + "get_r1cs_info": 0.0007054843008518219, + "groth16_setup": 1.6635373625904322, + "export_verification_key": 1.359395258128643, + "download_trusted_setup_file": 0.0024296436458826065 + }, + "file_sizes": { + "total": 225418, + "circuit": 213240, + "total_gb": 0.000225418, + "total_mb": 0.225418, + "circuit.dat": 6176, + "code.tar.gz": 497, + "circuit.zkey": 2580, + "verification_key": 2925 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", + "Model:": "85", + "CPU(s):": "96", + "BogoMIPS:": "5400.00", + "L2 cache:": "48 MiB (48 instances)", + "L3 cache:": "66 MiB (2 instances)", + "Stepping:": "4", + "L1d cache:": "1.5 MiB (48 instances)", + "L1i cache:": "1.5 MiB (48 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "46 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", + "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", + "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Core(s) per socket:": "24", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", + "On-line CPU(s) list:": "0,1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41-49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89-95", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88", + "Vulnerability Meltdown:": "Mitigation; PTI", + "Vulnerability Retbleed:": "Mitigation; IBRS", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", + "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": 0, + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0, + "num_wires": 4, + "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", + "witness_compiler": "c++" + }, + { + "circuit_id": "6c8880ec-74b0-4668-a577-bf49ab082ee6", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-14T18:46:17.471Z", + "proving_scheme": "groth16", + "status": "Ready", + "compute_time": "P0DT00H00M08.660558S", + "compute_times": { + "total": 8.733056403696537, + "queued": 1.092197, + "clean_up": 0.0028520766645669937, + "create_cpp": 0.052579380571842194, + "file_setup": 0.23965846560895443, + "compile_cpp": 5.635051192715764, + "create_r1cs": 0.019429346546530724, + "save_results": 0.005396207794547081, + "get_r1cs_info": 0.0007434431463479996, + "groth16_setup": 1.4462960939854383, + "export_verification_key": 1.3281519785523415, + "download_trusted_setup_file": 0.0024572182446718216 + }, + "file_sizes": { + "total": 225418, + "circuit": 213240, + "total_gb": 0.000225418, + "total_mb": 0.225418, + "circuit.dat": 6176, + "code.tar.gz": 497, + "circuit.zkey": 2580, + "verification_key": 2925 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", + "Model:": "85", + "CPU(s):": "96", + "BogoMIPS:": "5400.00", + "L2 cache:": "48 MiB (48 instances)", + "L3 cache:": "66 MiB (2 instances)", + "Stepping:": "4", + "L1d cache:": "1.5 MiB (48 instances)", + "L1i cache:": "1.5 MiB (48 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "46 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", + "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", + "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Core(s) per socket:": "24", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", + "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", + "Vulnerability Meltdown:": "Mitigation; PTI", + "Vulnerability Retbleed:": "Mitigation; IBRS", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", + "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": 0, + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0, + "num_wires": 4, + "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", + "witness_compiler": "c++" + }, + { + "circuit_id": "3b4060a2-6272-49df-a5f5-2d848ea3568d", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-14T18:46:17.080Z", + "proving_scheme": "groth16", + "status": "Ready", + "compute_time": "P0DT00H00M07.963489S", + "compute_times": { + "total": 8.049663323909044, + "queued": 1.109603, + "clean_up": 0.0019163694232702255, + "create_cpp": 0.05177045613527298, + "file_setup": 0.2615332882851362, + "compile_cpp": 4.643600087612867, + "create_r1cs": 0.016842812299728394, + "save_results": 0.006387719884514809, + "get_r1cs_info": 0.0007886830717325211, + "groth16_setup": 1.5305246319621801, + "export_verification_key": 1.5330269560217857, + "download_trusted_setup_file": 0.0027020927518606186 + }, + "file_sizes": { + "total": 225426, + "circuit": 213240, + "total_gb": 0.000225426, + "total_mb": 0.225426, + "circuit.dat": 6176, + "code.tar.gz": 505, + "circuit.zkey": 2580, + "verification_key": 2925 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", + "Model:": "85", + "CPU(s):": "96", + "BogoMIPS:": "5400.00", + "L2 cache:": "48 MiB (48 instances)", + "L3 cache:": "66 MiB (2 instances)", + "Stepping:": "4", + "L1d cache:": "1.5 MiB (48 instances)", + "L1i cache:": "1.5 MiB (48 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "46 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", + "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", + "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Core(s) per socket:": "24", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", + "On-line CPU(s) list:": "0,1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41-49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89-95", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88", + "Vulnerability Meltdown:": "Mitigation; PTI", + "Vulnerability Retbleed:": "Mitigation; IBRS", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", + "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": 0, + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0, + "num_wires": 4, + "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", + "witness_compiler": "c++" + }, + { + "circuit_id": "e9738cfe-e43f-47eb-bf7e-1aee7eda254d", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-14T18:46:17.031Z", + "proving_scheme": "groth16", + "status": "Ready", + "compute_time": "P0DT00H00M07.752852S", + "compute_times": { + "total": 7.833738502115011, + "queued": 1.103525, + "clean_up": 0.0007738582789897919, + "create_cpp": 0.04726468026638031, + "file_setup": 0.2604553271085024, + "compile_cpp": 4.593758463859558, + "create_r1cs": 0.017804840579628944, + "save_results": 0.005725737661123276, + "get_r1cs_info": 0.0007703714072704315, + "groth16_setup": 1.4161110799759626, + "export_verification_key": 1.4887929297983646, + "download_trusted_setup_file": 0.001879064366221428 + }, + "file_sizes": { + "total": 225450, + "circuit": 213240, + "total_gb": 0.00022545, + "total_mb": 0.22545, + "circuit.dat": 6176, + "code.tar.gz": 529, + "circuit.zkey": 2580, + "verification_key": 2925 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tgz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", + "Model:": "85", + "CPU(s):": "96", + "BogoMIPS:": "5400.00", + "L2 cache:": "48 MiB (48 instances)", + "L3 cache:": "66 MiB (2 instances)", + "Stepping:": "4", + "L1d cache:": "1.5 MiB (48 instances)", + "L1i cache:": "1.5 MiB (48 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "46 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", + "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", + "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Core(s) per socket:": "24", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", + "On-line CPU(s) list:": "0,1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41-49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89-95", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88", + "Vulnerability Meltdown:": "Mitigation; PTI", + "Vulnerability Retbleed:": "Mitigation; IBRS", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", + "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": 0, + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0, + "num_wires": 4, + "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", + "witness_compiler": "c++" + }, + { + "circuit_id": "42288e72-32af-4d49-a000-0c4106d72b1a", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-14T18:44:50.525Z", + "proving_scheme": "groth16", + "status": "Ready", + "compute_time": "P0DT00H00M07.721066S", + "compute_times": { + "total": 7.797398852184415, + "queued": 29.569685, + "clean_up": 0.00167049840092659, + "create_cpp": 0.05636698007583618, + "file_setup": 0.2505635917186737, + "compile_cpp": 4.744883842766285, + "create_r1cs": 0.009372701868414879, + "save_results": 0.0053126197308301926, + "get_r1cs_info": 0.0004866402596235275, + "groth16_setup": 1.37183235026896, + "export_verification_key": 1.3548658676445484, + "download_trusted_setup_file": 0.0013033263385295868 + }, + "file_sizes": { + "total": 225418, + "circuit": 213240, + "total_gb": 0.000225418, + "total_mb": 0.225418, + "circuit.dat": 6176, + "code.tar.gz": 497, + "circuit.zkey": 2580, + "verification_key": 2925 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", + "Model:": "85", + "CPU(s):": "96", + "BogoMIPS:": "5400.00", + "L2 cache:": "48 MiB (48 instances)", + "L3 cache:": "66 MiB (2 instances)", + "Stepping:": "4", + "L1d cache:": "1.5 MiB (48 instances)", + "L1i cache:": "1.5 MiB (48 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "46 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", + "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", + "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Core(s) per socket:": "24", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", + "On-line CPU(s) list:": "0,1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41-49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89-95", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88", + "Vulnerability Meltdown:": "Mitigation; PTI", + "Vulnerability Retbleed:": "Mitigation; IBRS", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", + "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": 0, + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0, + "num_wires": 4, + "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", + "witness_compiler": "c++" + }, + { + "circuit_id": "fbaee0ab-13a1-4548-9434-7f31a9db8909", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-14T18:44:50.133Z", + "proving_scheme": "groth16", + "status": "Ready", + "compute_time": "P0DT00H00M07.576409S", + "compute_times": { + "total": 7.656400920823216, + "queued": 27.995471, + "clean_up": 0.0009287483990192413, + "create_cpp": 0.05411672405898571, + "file_setup": 0.26574583910405636, + "compile_cpp": 4.590775987133384, + "create_r1cs": 0.01676061749458313, + "save_results": 0.00399848073720932, + "get_r1cs_info": 0.000689459964632988, + "groth16_setup": 1.3729439843446016, + "export_verification_key": 1.3473240491002798, + "download_trusted_setup_file": 0.0025283172726631165 + }, + "file_sizes": { + "total": 225426, + "circuit": 213240, + "total_gb": 0.000225426, + "total_mb": 0.225426, + "circuit.dat": 6176, + "code.tar.gz": 505, + "circuit.zkey": 2580, + "verification_key": 2925 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", + "Model:": "85", + "CPU(s):": "96", + "BogoMIPS:": "5400.00", + "L2 cache:": "48 MiB (48 instances)", + "L3 cache:": "66 MiB (2 instances)", + "Stepping:": "4", + "L1d cache:": "1.5 MiB (48 instances)", + "L1i cache:": "1.5 MiB (48 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "46 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", + "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", + "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Core(s) per socket:": "24", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", + "On-line CPU(s) list:": "0,1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41-49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89-95", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88", + "Vulnerability Meltdown:": "Mitigation; PTI", + "Vulnerability Retbleed:": "Mitigation; IBRS", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", + "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": 0, + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0, + "num_wires": 4, + "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", + "witness_compiler": "c++" + }, + { + "circuit_id": "033af40b-8898-431b-a0e9-67c0d4a8d482", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-14T18:44:49.642Z", + "proving_scheme": "groth16", + "status": "Ready", + "compute_time": "P0DT00H00M07.669965S", + "compute_times": { + "total": 7.7474795281887054, + "queued": 25.186763, + "clean_up": 0.0007379837334156036, + "create_cpp": 0.05420535057783127, + "file_setup": 0.2591994274407625, + "compile_cpp": 4.683894477784634, + "create_r1cs": 0.01852503977715969, + "save_results": 0.004642404615879059, + "get_r1cs_info": 0.0008469689637422562, + "groth16_setup": 1.3640733323991299, + "export_verification_key": 1.3582920264452696, + "download_trusted_setup_file": 0.0026291999965906143 + }, + "file_sizes": { + "total": 225450, + "circuit": 213240, + "total_gb": 0.00022545, + "total_mb": 0.22545, + "circuit.dat": 6176, + "code.tar.gz": 529, + "circuit.zkey": 2580, + "verification_key": 2925 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tgz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", + "Model:": "85", + "CPU(s):": "96", + "BogoMIPS:": "5400.00", + "L2 cache:": "48 MiB (48 instances)", + "L3 cache:": "66 MiB (2 instances)", + "Stepping:": "4", + "L1d cache:": "1.5 MiB (48 instances)", + "L1i cache:": "1.5 MiB (48 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "46 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", + "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", + "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Core(s) per socket:": "24", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", + "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", + "Vulnerability Meltdown:": "Mitigation; PTI", + "Vulnerability Retbleed:": "Mitigation; IBRS", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", + "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": 0, + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0, + "num_wires": 4, + "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", + "witness_compiler": "c++" + }, + { + "circuit_id": "c3770fbd-f11b-4b49-90d3-cfad9feb3fd9", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-14T18:44:49.597Z", + "proving_scheme": "groth16", + "status": "Ready", + "compute_time": "P0DT00H00M07.666218S", + "compute_times": { + "total": 7.743923228234053, + "queued": 16.244985, + "clean_up": 0.0016544517129659653, + "create_cpp": 0.04558009281754494, + "file_setup": 0.24755106307566166, + "compile_cpp": 4.744448408484459, + "create_r1cs": 0.01863648183643818, + "save_results": 0.005422661080956459, + "get_r1cs_info": 0.0007555857300758362, + "groth16_setup": 1.3294172957539558, + "export_verification_key": 1.347303519025445, + "download_trusted_setup_file": 0.002494456246495247 + }, + "file_sizes": { + "total": 225418, + "circuit": 213240, + "total_gb": 0.000225418, + "total_mb": 0.225418, + "circuit.dat": 6176, + "code.tar.gz": 497, + "circuit.zkey": 2580, + "verification_key": 2925 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", + "Model:": "85", + "CPU(s):": "96", + "BogoMIPS:": "5400.00", + "L2 cache:": "48 MiB (48 instances)", + "L3 cache:": "66 MiB (2 instances)", + "Stepping:": "4", + "L1d cache:": "1.5 MiB (48 instances)", + "L1i cache:": "1.5 MiB (48 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "46 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", + "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", + "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Core(s) per socket:": "24", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", + "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", + "Vulnerability Meltdown:": "Mitigation; PTI", + "Vulnerability Retbleed:": "Mitigation; IBRS", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", + "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": 0, + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0, + "num_wires": 4, + "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", + "witness_compiler": "c++" + }, + { + "circuit_id": "ace357b8-01b9-4f55-9d17-a2ca4bc4d638", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-14T18:24:05.843Z", + "proving_scheme": "groth16", + "status": "Ready", + "compute_time": "P0DT00H00M07.484466S", + "compute_times": { + "total": 7.562151093035936, + "queued": 20.625634, + "clean_up": 0.0017509087920188904, + "create_cpp": 0.04661180265247822, + "file_setup": 0.24942035041749477, + "compile_cpp": 4.542725313454866, + "create_r1cs": 0.019399696961045265, + "save_results": 0.007124448195099831, + "get_r1cs_info": 0.0007141679525375366, + "groth16_setup": 1.3570096530020237, + "export_verification_key": 1.3343026712536812, + "download_trusted_setup_file": 0.0024999063462018967 + }, + "file_sizes": { + "total": 225418, + "circuit": 213240, + "total_gb": 0.000225418, + "total_mb": 0.225418, + "circuit.dat": 6176, + "code.tar.gz": 497, + "circuit.zkey": 2580, + "verification_key": 2925 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", + "Model:": "85", + "CPU(s):": "96", + "BogoMIPS:": "5400.00", + "L2 cache:": "48 MiB (48 instances)", + "L3 cache:": "66 MiB (2 instances)", + "Stepping:": "4", + "L1d cache:": "1.5 MiB (48 instances)", + "L1i cache:": "1.5 MiB (48 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "46 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", + "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", + "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Core(s) per socket:": "24", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", + "On-line CPU(s) list:": "0,1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41-49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89-95", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88", + "Vulnerability Meltdown:": "Mitigation; PTI", + "Vulnerability Retbleed:": "Mitigation; IBRS", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", + "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": 0, + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0, + "num_wires": 4, + "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", + "witness_compiler": "c++" + }, + { + "circuit_id": "a69bedc7-a23a-48c0-9a6d-d7257cd0ee07", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-14T18:24:04.740Z", + "proving_scheme": "groth16", + "status": "Ready", + "compute_time": "P0DT00H00M07.611924S", + "compute_times": { + "total": 7.688939314335585, + "queued": 18.98661, + "clean_up": 0.0007829554378986359, + "create_cpp": 0.05032696574926376, + "file_setup": 0.2520132940262556, + "compile_cpp": 4.722641088068485, + "create_r1cs": 0.0107505451887846, + "save_results": 0.005139663815498352, + "get_r1cs_info": 0.0006618890911340714, + "groth16_setup": 1.3368865679949522, + "export_verification_key": 1.3068783804774284, + "download_trusted_setup_file": 0.0024257171899080276 + }, + "file_sizes": { + "total": 225418, + "circuit": 213240, + "total_gb": 0.000225418, + "total_mb": 0.225418, + "circuit.dat": 6176, + "code.tar.gz": 497, + "circuit.zkey": 2580, + "verification_key": 2925 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", + "Model:": "85", + "CPU(s):": "96", + "BogoMIPS:": "5400.00", + "L2 cache:": "48 MiB (48 instances)", + "L3 cache:": "66 MiB (2 instances)", + "Stepping:": "4", + "L1d cache:": "1.5 MiB (48 instances)", + "L1i cache:": "1.5 MiB (48 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "46 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", + "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", + "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Core(s) per socket:": "24", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", + "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", + "Vulnerability Meltdown:": "Mitigation; PTI", + "Vulnerability Retbleed:": "Mitigation; IBRS", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", + "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": 0, + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0, + "num_wires": 4, + "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", + "witness_compiler": "c++" + }, + { + "circuit_id": "2806fe3b-b959-40b4-b68a-6a48a4730339", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-14T18:24:04.538Z", + "proving_scheme": "groth16", + "status": "Ready", + "compute_time": "P0DT00H00M07.671080S", + "compute_times": { + "total": 7.7527586203068495, + "queued": 10.266939, + "clean_up": 0.0017596669495105743, + "create_cpp": 0.05662725120782852, + "file_setup": 0.24927497655153275, + "compile_cpp": 4.834171952679753, + "create_r1cs": 0.015801193192601204, + "save_results": 0.005597377195954323, + "get_r1cs_info": 0.0006633754819631577, + "groth16_setup": 1.285094628110528, + "export_verification_key": 1.3006944358348846, + "download_trusted_setup_file": 0.002444768324494362 + }, + "file_sizes": { + "total": 225450, + "circuit": 213240, + "total_gb": 0.00022545, + "total_mb": 0.22545, + "circuit.dat": 6176, + "code.tar.gz": 529, + "circuit.zkey": 2580, + "verification_key": 2925 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tgz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", + "Model:": "85", + "CPU(s):": "96", + "BogoMIPS:": "5400.00", + "L2 cache:": "48 MiB (48 instances)", + "L3 cache:": "66 MiB (2 instances)", + "Stepping:": "4", + "L1d cache:": "1.5 MiB (48 instances)", + "L1i cache:": "1.5 MiB (48 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "46 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", + "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", + "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Core(s) per socket:": "24", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", + "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", + "Vulnerability Meltdown:": "Mitigation; PTI", + "Vulnerability Retbleed:": "Mitigation; IBRS", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", + "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": 0, + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0, + "num_wires": 4, + "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", + "witness_compiler": "c++" + }, + { + "circuit_id": "14806e82-8e0e-42f4-921c-aba1914cc309", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-14T18:24:04.382Z", + "proving_scheme": "groth16", + "status": "Ready", + "compute_time": "P0DT00H00M07.909717S", + "compute_times": { + "total": 7.9800247810781, + "queued": 1.219168, + "clean_up": 0.0017995405942201614, + "create_cpp": 0.04708561487495899, + "file_setup": 0.2477656602859497, + "compile_cpp": 4.89770944416523, + "create_r1cs": 0.01611543633043766, + "save_results": 0.005786914378404617, + "get_r1cs_info": 0.0007048510015010834, + "groth16_setup": 1.3873562160879374, + "export_verification_key": 1.3729455471038818, + "download_trusted_setup_file": 0.002437746152281761 + }, + "file_sizes": { + "total": 225424, + "circuit": 213240, + "total_gb": 0.000225424, + "total_mb": 0.225424, + "circuit.dat": 6176, + "code.tar.gz": 503, + "circuit.zkey": 2580, + "verification_key": 2925 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", + "Model:": "85", + "CPU(s):": "96", + "BogoMIPS:": "5400.00", + "L2 cache:": "48 MiB (48 instances)", + "L3 cache:": "66 MiB (2 instances)", + "Stepping:": "4", + "L1d cache:": "1.5 MiB (48 instances)", + "L1i cache:": "1.5 MiB (48 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "46 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", + "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", + "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Core(s) per socket:": "24", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", + "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", + "Vulnerability Meltdown:": "Mitigation; PTI", + "Vulnerability Retbleed:": "Mitigation; IBRS", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", + "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": 0, + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0, + "num_wires": 4, + "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", + "witness_compiler": "c++" + }, + { + "circuit_id": "6ed31334-d260-4652-ad11-fce789b04ad2", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-14T18:17:09.984Z", + "proving_scheme": "groth16", + "status": "Ready", + "compute_time": "P0DT00H00M07.597495S", + "compute_times": { + "total": 7.674594018608332, + "queued": 8.634986, + "clean_up": 0.0016419794410467148, + "create_cpp": 0.047586649656295776, + "file_setup": 0.2436046116054058, + "compile_cpp": 4.683977667242289, + "create_r1cs": 0.017859995365142822, + "save_results": 0.00542888417840004, + "get_r1cs_info": 0.0007064882665872574, + "groth16_setup": 1.3227286096662283, + "export_verification_key": 1.3475021123886108, + "download_trusted_setup_file": 0.00292983278632164 + }, + "file_sizes": { + "total": 225418, + "circuit": 213240, + "total_gb": 0.000225418, + "total_mb": 0.225418, + "circuit.dat": 6176, + "code.tar.gz": 497, + "circuit.zkey": 2580, + "verification_key": 2925 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", + "Model:": "85", + "CPU(s):": "96", + "BogoMIPS:": "5400.00", + "L2 cache:": "48 MiB (48 instances)", + "L3 cache:": "66 MiB (2 instances)", + "Stepping:": "4", + "L1d cache:": "1.5 MiB (48 instances)", + "L1i cache:": "1.5 MiB (48 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "46 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", + "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", + "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Core(s) per socket:": "24", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", + "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", + "Vulnerability Meltdown:": "Mitigation; PTI", + "Vulnerability Retbleed:": "Mitigation; IBRS", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", + "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": 0, + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0, + "num_wires": 4, + "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", + "witness_compiler": "c++" + }, + { + "circuit_id": "adb0b7b7-c2cd-4260-8369-e0f2d400a104", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-14T18:17:09.000Z", + "proving_scheme": "groth16", + "status": "Ready", + "compute_time": "P0DT00H00M08.020968S", + "compute_times": { + "total": 8.11050195991993, + "queued": 1.106339, + "clean_up": 0.0017776619642972946, + "create_cpp": 0.042624855414032936, + "file_setup": 0.29933272302150726, + "compile_cpp": 4.833516420796514, + "create_r1cs": 0.01687009632587433, + "save_results": 0.006504466757178307, + "get_r1cs_info": 0.00066353939473629, + "groth16_setup": 1.4784862399101257, + "export_verification_key": 1.427861487492919, + "download_trusted_setup_file": 0.002409808337688446 + }, + "file_sizes": { + "total": 225450, + "circuit": 213240, + "total_gb": 0.00022545, + "total_mb": 0.22545, + "circuit.dat": 6176, + "code.tar.gz": 529, + "circuit.zkey": 2580, + "verification_key": 2925 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tgz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", + "Model:": "85", + "CPU(s):": "96", + "BogoMIPS:": "5400.00", + "L2 cache:": "48 MiB (48 instances)", + "L3 cache:": "66 MiB (2 instances)", + "Stepping:": "4", + "L1d cache:": "1.5 MiB (48 instances)", + "L1i cache:": "1.5 MiB (48 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "46 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", + "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", + "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Core(s) per socket:": "24", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", + "On-line CPU(s) list:": "0,1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41-49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89-95", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88", + "Vulnerability Meltdown:": "Mitigation; PTI", + "Vulnerability Retbleed:": "Mitigation; IBRS", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", + "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": 0, + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0, + "num_wires": 4, + "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", + "witness_compiler": "c++" + }, + { + "circuit_id": "22d70ee8-f3df-4941-b399-07d13f78abe9", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-14T18:17:08.494Z", + "proving_scheme": "groth16", + "status": "Ready", + "compute_time": "P0DT00H00M07.691111S", + "compute_times": { + "total": 7.771573496982455, + "queued": 1.17, + "clean_up": 0.0016926135867834091, + "create_cpp": 0.05935652367770672, + "file_setup": 0.2620077710598707, + "compile_cpp": 4.75682108476758, + "create_r1cs": 0.014452280476689339, + "save_results": 0.005480160936713219, + "get_r1cs_info": 0.0006888676434755325, + "groth16_setup": 1.3388383872807026, + "export_verification_key": 1.32946134544909, + "download_trusted_setup_file": 0.0022690370678901672 + }, + "file_sizes": { + "total": 225418, + "circuit": 213240, + "total_gb": 0.000225418, + "total_mb": 0.225418, + "circuit.dat": 6176, + "code.tar.gz": 497, + "circuit.zkey": 2580, + "verification_key": 2925 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", + "Model:": "85", + "CPU(s):": "96", + "BogoMIPS:": "5400.00", + "L2 cache:": "48 MiB (48 instances)", + "L3 cache:": "66 MiB (2 instances)", + "Stepping:": "4", + "L1d cache:": "1.5 MiB (48 instances)", + "L1i cache:": "1.5 MiB (48 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "46 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", + "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", + "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Core(s) per socket:": "24", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", + "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", + "Vulnerability Meltdown:": "Mitigation; PTI", + "Vulnerability Retbleed:": "Mitigation; IBRS", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", + "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": 0, + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0, + "num_wires": 4, + "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", + "witness_compiler": "c++" + }, + { + "circuit_id": "737f5589-b161-48c1-8afb-3c24a136a6c1", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-14T18:17:08.468Z", + "proving_scheme": "groth16", + "status": "Ready", + "compute_time": "P0DT00H00M08.291924S", + "compute_times": { + "total": 8.365394989028573, + "queued": 1.157799, + "clean_up": 0.0015689730644226074, + "create_cpp": 0.04686474800109863, + "file_setup": 0.24952785670757294, + "compile_cpp": 5.094061799347401, + "create_r1cs": 0.019047506153583527, + "save_results": 0.0056635066866874695, + "get_r1cs_info": 0.0004320461302995682, + "groth16_setup": 1.5466318130493164, + "export_verification_key": 1.39987507276237, + "download_trusted_setup_file": 0.0013030990958213806 + }, + "file_sizes": { + "total": 225424, + "circuit": 213240, + "total_gb": 0.000225424, + "total_mb": 0.225424, + "circuit.dat": 6176, + "code.tar.gz": 503, + "circuit.zkey": 2580, + "verification_key": 2925 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", + "Model:": "85", + "CPU(s):": "96", + "BogoMIPS:": "5400.00", + "L2 cache:": "48 MiB (48 instances)", + "L3 cache:": "66 MiB (2 instances)", + "Stepping:": "4", + "L1d cache:": "1.5 MiB (48 instances)", + "L1i cache:": "1.5 MiB (48 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "46 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", + "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", + "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Core(s) per socket:": "24", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", + "On-line CPU(s) list:": "0,1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41-49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89-95", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88", + "Vulnerability Meltdown:": "Mitigation; PTI", + "Vulnerability Retbleed:": "Mitigation; IBRS", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", + "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": 0, + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0, + "num_wires": 4, + "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", + "witness_compiler": "c++" + }, + { + "circuit_id": "00baff55-6d30-4365-9727-806c227187ec", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-14T18:15:35.627Z", + "proving_scheme": "groth16", + "status": "Ready", + "compute_time": "P0DT00H00M07.619282S", + "compute_times": { + "total": 7.691293215379119, + "queued": 19.200144, + "clean_up": 0.0017832368612289429, + "create_cpp": 0.04681010544300079, + "file_setup": 0.24938089400529861, + "compile_cpp": 4.651383237913251, + "create_r1cs": 0.016947990283370018, + "save_results": 0.0064728278666734695, + "get_r1cs_info": 0.0008025597780942917, + "groth16_setup": 1.3398670889437199, + "export_verification_key": 1.37474081851542, + "download_trusted_setup_file": 0.002573670819401741 + }, + "file_sizes": { + "total": 225424, + "circuit": 213240, + "total_gb": 0.000225424, + "total_mb": 0.225424, + "circuit.dat": 6176, + "code.tar.gz": 503, + "circuit.zkey": 2580, + "verification_key": 2925 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", + "Model:": "85", + "CPU(s):": "96", + "BogoMIPS:": "5400.00", + "L2 cache:": "48 MiB (48 instances)", + "L3 cache:": "66 MiB (2 instances)", + "Stepping:": "4", + "L1d cache:": "1.5 MiB (48 instances)", + "L1i cache:": "1.5 MiB (48 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "46 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", + "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", + "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Core(s) per socket:": "24", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", + "On-line CPU(s) list:": "0,1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41-49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89-95", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88", + "Vulnerability Meltdown:": "Mitigation; PTI", + "Vulnerability Retbleed:": "Mitigation; IBRS", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", + "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": 0, + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0, + "num_wires": 4, + "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", + "witness_compiler": "c++" + }, + { + "circuit_id": "83b80a52-0af7-4ce3-971e-f271e4657643", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-14T18:15:35.129Z", + "proving_scheme": "groth16", + "status": "Ready", + "compute_time": "P0DT00H00M07.374925S", + "compute_times": { + "total": 7.4528124667704105, + "queued": 16.312228, + "clean_up": 0.0017383582890033722, + "create_cpp": 0.05669763870537281, + "file_setup": 0.2676529083400965, + "compile_cpp": 4.4346959348768, + "create_r1cs": 0.017131024971604347, + "save_results": 0.0058726053684949875, + "get_r1cs_info": 0.00045347586274147034, + "groth16_setup": 1.302895437926054, + "export_verification_key": 1.3638175278902054, + "download_trusted_setup_file": 0.001258334144949913 + }, + "file_sizes": { + "total": 225418, + "circuit": 213240, + "total_gb": 0.000225418, + "total_mb": 0.225418, + "circuit.dat": 6176, + "code.tar.gz": 497, + "circuit.zkey": 2580, + "verification_key": 2925 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", + "Model:": "85", + "CPU(s):": "96", + "BogoMIPS:": "5400.00", + "L2 cache:": "48 MiB (48 instances)", + "L3 cache:": "66 MiB (2 instances)", + "Stepping:": "4", + "L1d cache:": "1.5 MiB (48 instances)", + "L1i cache:": "1.5 MiB (48 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "46 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", + "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", + "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Core(s) per socket:": "24", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", + "On-line CPU(s) list:": "0,1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41-49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89-95", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88", + "Vulnerability Meltdown:": "Mitigation; PTI", + "Vulnerability Retbleed:": "Mitigation; IBRS", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", + "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": 0, + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0, + "num_wires": 4, + "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", + "witness_compiler": "c++" + }, + { + "circuit_id": "5db66e21-93fa-4cfd-9b54-eba6cc5f0b5d", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-14T18:15:35.089Z", + "proving_scheme": "groth16", + "status": "Ready", + "compute_time": "P0DT00H00M07.658449S", + "compute_times": { + "total": 7.735888196155429, + "queued": 15.077966, + "clean_up": 0.0016767363995313644, + "create_cpp": 0.047638872638344765, + "file_setup": 0.2675781920552254, + "compile_cpp": 4.7792276702821255, + "create_r1cs": 0.018472682684659958, + "save_results": 0.00616835243999958, + "get_r1cs_info": 0.0007582195103168488, + "groth16_setup": 1.3009603060781956, + "export_verification_key": 1.3102184478193521, + "download_trusted_setup_file": 0.002536667510867119 + }, + "file_sizes": { + "total": 225450, + "circuit": 213240, + "total_gb": 0.00022545, + "total_mb": 0.22545, + "circuit.dat": 6176, + "code.tar.gz": 529, + "circuit.zkey": 2580, + "verification_key": 2925 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tgz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", + "Model:": "85", + "CPU(s):": "96", + "BogoMIPS:": "5400.00", + "L2 cache:": "48 MiB (48 instances)", + "L3 cache:": "66 MiB (2 instances)", + "Stepping:": "4", + "L1d cache:": "1.5 MiB (48 instances)", + "L1i cache:": "1.5 MiB (48 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "46 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", + "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", + "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Core(s) per socket:": "24", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", + "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", + "Vulnerability Meltdown:": "Mitigation; PTI", + "Vulnerability Retbleed:": "Mitigation; IBRS", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", + "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": 0, + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0, + "num_wires": 4, + "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", + "witness_compiler": "c++" + }, + { + "circuit_id": "5665be07-b604-414b-b6a1-9f87a21cab12", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-14T18:01:33.996Z", + "proving_scheme": "groth16", + "status": "Ready", + "compute_time": "P0DT00H00M07.358621S", + "compute_times": { + "total": 7.430434772744775, + "queued": 1.067157, + "clean_up": 0.0017831884324550629, + "create_cpp": 0.04887022823095322, + "file_setup": 0.24746119230985641, + "compile_cpp": 4.42920583859086, + "create_r1cs": 0.015806885436177254, + "save_results": 0.005989404395222664, + "get_r1cs_info": 0.000494047999382019, + "groth16_setup": 1.2992996741086245, + "export_verification_key": 1.3796110693365335, + "download_trusted_setup_file": 0.0014664717018604279 + }, + "file_sizes": { + "total": 225418, + "circuit": 213240, + "total_gb": 0.000225418, + "total_mb": 0.225418, + "circuit.dat": 6176, + "code.tar.gz": 497, + "circuit.zkey": 2580, + "verification_key": 2925 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", + "Model:": "85", + "CPU(s):": "96", + "BogoMIPS:": "5400.00", + "L2 cache:": "48 MiB (48 instances)", + "L3 cache:": "66 MiB (2 instances)", + "Stepping:": "4", + "L1d cache:": "1.5 MiB (48 instances)", + "L1i cache:": "1.5 MiB (48 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "46 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", + "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", + "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Core(s) per socket:": "24", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", + "On-line CPU(s) list:": "0,1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41-49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89-95", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88", + "Vulnerability Meltdown:": "Mitigation; PTI", + "Vulnerability Retbleed:": "Mitigation; IBRS", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", + "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": 0, + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0, + "num_wires": 4, + "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", + "witness_compiler": "c++" + }, + { + "circuit_id": "3bc09c20-22e4-443a-b3c1-55ddb5488ed4", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-14T18:00:53.344Z", + "proving_scheme": "groth16", + "status": "Ready", + "compute_time": "P0DT00H00M07.484230S", + "compute_times": { + "total": 7.559012655168772, + "queued": 24.038113, + "clean_up": 0.001834215596318245, + "create_cpp": 0.047222478315234184, + "file_setup": 0.2665374279022217, + "compile_cpp": 4.527841242030263, + "create_r1cs": 0.010656235739588737, + "save_results": 0.005962014198303223, + "get_r1cs_info": 0.0007966365665197372, + "groth16_setup": 1.3851932883262634, + "export_verification_key": 1.3095076736062765, + "download_trusted_setup_file": 0.0028558634221553802 + }, + "file_sizes": { + "total": 225418, + "circuit": 213240, + "total_gb": 0.000225418, + "total_mb": 0.225418, + "circuit.dat": 6176, + "code.tar.gz": 497, + "circuit.zkey": 2580, + "verification_key": 2925 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", + "Model:": "85", + "CPU(s):": "96", + "BogoMIPS:": "5400.00", + "L2 cache:": "48 MiB (48 instances)", + "L3 cache:": "66 MiB (2 instances)", + "Stepping:": "4", + "L1d cache:": "1.5 MiB (48 instances)", + "L1i cache:": "1.5 MiB (48 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "46 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", + "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", + "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Core(s) per socket:": "24", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", + "On-line CPU(s) list:": "0,1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41-49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89-95", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88", + "Vulnerability Meltdown:": "Mitigation; PTI", + "Vulnerability Retbleed:": "Mitigation; IBRS", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", + "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": 0, + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0, + "num_wires": 4, + "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", + "witness_compiler": "c++" + }, + { + "circuit_id": "b16923be-f1f5-4721-b1fe-e77e60c5075c", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-14T18:00:52.361Z", + "proving_scheme": "groth16", + "status": "Ready", + "compute_time": "P0DT00H00M07.613447S", + "compute_times": { + "total": 7.678777739405632, + "queued": 18.390724, + "clean_up": 0.0018066484481096268, + "create_cpp": 0.046223074197769165, + "file_setup": 0.2186940722167492, + "compile_cpp": 4.732459098100662, + "create_r1cs": 0.016505463048815727, + "save_results": 0.005674159154295921, + "get_r1cs_info": 0.0008121822029352188, + "groth16_setup": 1.3473218008875847, + "export_verification_key": 1.3064227681607008, + "download_trusted_setup_file": 0.0024397335946559906 + }, + "file_sizes": { + "total": 225424, + "circuit": 213240, + "total_gb": 0.000225424, + "total_mb": 0.225424, + "circuit.dat": 6176, + "code.tar.gz": 503, + "circuit.zkey": 2580, + "verification_key": 2925 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", + "Model:": "85", + "CPU(s):": "96", + "BogoMIPS:": "5400.00", + "L2 cache:": "48 MiB (48 instances)", + "L3 cache:": "66 MiB (2 instances)", + "Stepping:": "4", + "L1d cache:": "1.5 MiB (48 instances)", + "L1i cache:": "1.5 MiB (48 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "46 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", + "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", + "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Core(s) per socket:": "24", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", + "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", + "Vulnerability Meltdown:": "Mitigation; PTI", + "Vulnerability Retbleed:": "Mitigation; IBRS", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", + "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": 0, + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0, + "num_wires": 4, + "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", + "witness_compiler": "c++" + }, + { + "circuit_id": "85cadabf-0e5d-41ba-8414-9b85a788205a", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-14T18:00:52.036Z", + "proving_scheme": "groth16", + "status": "Ready", + "compute_time": "P0DT00H00M07.728439S", + "compute_times": { + "total": 7.805055180564523, + "queued": 9.804823, + "clean_up": 0.001579929143190384, + "create_cpp": 0.04664304107427597, + "file_setup": 0.2456628568470478, + "compile_cpp": 4.755457693710923, + "create_r1cs": 0.01651918888092041, + "save_results": 0.005783999338746071, + "get_r1cs_info": 0.0008587650954723358, + "groth16_setup": 1.394832018762827, + "export_verification_key": 1.3348707742989063, + "download_trusted_setup_file": 0.0024223458021879196 + }, + "file_sizes": { + "total": 225418, + "circuit": 213240, + "total_gb": 0.000225418, + "total_mb": 0.225418, + "circuit.dat": 6176, + "code.tar.gz": 497, + "circuit.zkey": 2580, + "verification_key": 2925 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", + "Model:": "85", + "CPU(s):": "96", + "BogoMIPS:": "5400.00", + "L2 cache:": "48 MiB (48 instances)", + "L3 cache:": "66 MiB (2 instances)", + "Stepping:": "4", + "L1d cache:": "1.5 MiB (48 instances)", + "L1i cache:": "1.5 MiB (48 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "46 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", + "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", + "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Core(s) per socket:": "24", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", + "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", + "Vulnerability Meltdown:": "Mitigation; PTI", + "Vulnerability Retbleed:": "Mitigation; IBRS", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", + "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": 0, + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0, + "num_wires": 4, + "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", + "witness_compiler": "c++" + }, + { + "circuit_id": "00cf3999-3779-4e65-bd0e-61d6f2fa12c5", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-14T18:00:51.993Z", + "proving_scheme": "groth16", + "status": "Ready", + "compute_time": "P0DT00H00M07.467315S", + "compute_times": { + "total": 7.544081119820476, + "queued": 1.176942, + "clean_up": 0.0019962936639785767, + "create_cpp": 0.05820799432694912, + "file_setup": 0.23373237252235413, + "compile_cpp": 4.640454025939107, + "create_r1cs": 0.010518679395318031, + "save_results": 0.005797773599624634, + "get_r1cs_info": 0.0006531458348035812, + "groth16_setup": 1.3033402767032385, + "export_verification_key": 1.2865915279835463, + "download_trusted_setup_file": 0.0024898946285247803 + }, + "file_sizes": { + "total": 225450, + "circuit": 213240, + "total_gb": 0.00022545, + "total_mb": 0.22545, + "circuit.dat": 6176, + "code.tar.gz": 529, + "circuit.zkey": 2580, + "verification_key": 2925 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tgz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", + "Model:": "85", + "CPU(s):": "96", + "BogoMIPS:": "5400.00", + "L2 cache:": "48 MiB (48 instances)", + "L3 cache:": "66 MiB (2 instances)", + "Stepping:": "4", + "L1d cache:": "1.5 MiB (48 instances)", + "L1i cache:": "1.5 MiB (48 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "46 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", + "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", + "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Core(s) per socket:": "24", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", + "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", + "Vulnerability Meltdown:": "Mitigation; PTI", + "Vulnerability Retbleed:": "Mitigation; IBRS", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", + "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": 0, + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0, + "num_wires": 4, + "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", + "witness_compiler": "c++" + }, + { + "circuit_id": "91708ea2-6a57-4d0f-b439-e615c869eb0c", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-14T18:00:12.640Z", + "proving_scheme": "groth16", + "status": "Ready", + "compute_time": "P0DT00H00M07.566330S", + "compute_times": { + "total": 7.638872114941478, + "queued": 1.083533, + "clean_up": 0.0016686953604221344, + "create_cpp": 0.05361836962401867, + "file_setup": 0.22490951046347618, + "compile_cpp": 4.661991640925407, + "create_r1cs": 0.011098312214016914, + "save_results": 0.005372248589992523, + "get_r1cs_info": 0.0006810426712036133, + "groth16_setup": 1.2943047359585762, + "export_verification_key": 1.3822605535387993, + "download_trusted_setup_file": 0.002469819039106369 + }, + "file_sizes": { + "total": 225418, + "circuit": 213240, + "total_gb": 0.000225418, + "total_mb": 0.225418, + "circuit.dat": 6176, + "code.tar.gz": 497, + "circuit.zkey": 2580, + "verification_key": 2925 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", + "Model:": "85", + "CPU(s):": "96", + "BogoMIPS:": "5400.00", + "L2 cache:": "48 MiB (48 instances)", + "L3 cache:": "66 MiB (2 instances)", + "Stepping:": "4", + "L1d cache:": "1.5 MiB (48 instances)", + "L1i cache:": "1.5 MiB (48 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "46 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", + "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", + "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Core(s) per socket:": "24", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", + "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", + "Vulnerability Meltdown:": "Mitigation; PTI", + "Vulnerability Retbleed:": "Mitigation; IBRS", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", + "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": 0, + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0, + "num_wires": 4, + "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", + "witness_compiler": "c++" + }, + { + "circuit_id": "80695249-80cb-4b30-a607-9a08ce4088aa", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-14T17:58:37.170Z", + "proving_scheme": "groth16", + "status": "Ready", + "compute_time": "P0DT00H00M07.588053S", + "compute_times": { + "total": 7.659883642569184, + "queued": 1.115212, + "clean_up": 0.0017240364104509354, + "create_cpp": 0.05423728749155998, + "file_setup": 0.22653288766741753, + "compile_cpp": 4.715006854385138, + "create_r1cs": 0.01801958493888378, + "save_results": 0.005619559437036514, + "get_r1cs_info": 0.0006584189832210541, + "groth16_setup": 1.3719583936035633, + "export_verification_key": 1.2632665000855923, + "download_trusted_setup_file": 0.0024633388966321945 + }, + "file_sizes": { + "total": 225418, + "circuit": 213240, + "total_gb": 0.000225418, + "total_mb": 0.225418, + "circuit.dat": 6176, + "code.tar.gz": 497, + "circuit.zkey": 2580, + "verification_key": 2925 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", + "Model:": "85", + "CPU(s):": "96", + "BogoMIPS:": "5400.00", + "L2 cache:": "48 MiB (48 instances)", + "L3 cache:": "66 MiB (2 instances)", + "Stepping:": "4", + "L1d cache:": "1.5 MiB (48 instances)", + "L1i cache:": "1.5 MiB (48 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "46 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", + "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", + "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Core(s) per socket:": "24", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", + "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", + "Vulnerability Meltdown:": "Mitigation; PTI", + "Vulnerability Retbleed:": "Mitigation; IBRS", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", + "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": 0, + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0, + "num_wires": 4, + "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", + "witness_compiler": "c++" + }, + { + "circuit_id": "3e14f13a-54bd-4442-b5b7-96e5317e52ed", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-14T17:57:16.314Z", + "proving_scheme": "groth16", + "status": "Ready", + "compute_time": "P0DT00H00M07.363533S", + "compute_times": { + "total": 7.428888592869043, + "queued": 1.09539, + "clean_up": 0.0010978449136018753, + "create_cpp": 0.05030778981745243, + "file_setup": 0.220810754224658, + "compile_cpp": 4.5690462831407785, + "create_r1cs": 0.017519544810056686, + "save_results": 0.0052297115325927734, + "get_r1cs_info": 0.000794650986790657, + "groth16_setup": 1.3148892186582088, + "export_verification_key": 1.246385119855404, + "download_trusted_setup_file": 0.002508854493498802 + }, + "file_sizes": { + "total": 225418, + "circuit": 213240, + "total_gb": 0.000225418, + "total_mb": 0.225418, + "circuit.dat": 6176, + "code.tar.gz": 497, + "circuit.zkey": 2580, + "verification_key": 2925 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", + "Model:": "85", + "CPU(s):": "96", + "BogoMIPS:": "5400.00", + "L2 cache:": "48 MiB (48 instances)", + "L3 cache:": "66 MiB (2 instances)", + "Stepping:": "4", + "L1d cache:": "1.5 MiB (48 instances)", + "L1i cache:": "1.5 MiB (48 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "46 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", + "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", + "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Core(s) per socket:": "24", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", + "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", + "Vulnerability Meltdown:": "Mitigation; PTI", + "Vulnerability Retbleed:": "Mitigation; IBRS", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", + "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": 0, + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0, + "num_wires": 4, + "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", + "witness_compiler": "c++" + }, + { + "circuit_id": "f049037e-e519-40da-a915-67be08cbb857", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-14T17:56:20.673Z", + "proving_scheme": "groth16", + "status": "Ready", + "compute_time": "P0DT00H00M07.554562S", + "compute_times": { + "total": 7.62885358184576, + "queued": 1.122774, + "clean_up": 0.0015935692936182022, + "create_cpp": 0.038827916607260704, + "file_setup": 0.2388095259666443, + "compile_cpp": 4.741127427667379, + "create_r1cs": 0.017170095816254616, + "save_results": 0.005732323974370956, + "get_r1cs_info": 0.0008209142833948135, + "groth16_setup": 1.341518772765994, + "export_verification_key": 1.2402091566473246, + "download_trusted_setup_file": 0.0024810880422592163 + }, + "file_sizes": { + "total": 225418, + "circuit": 213240, + "total_gb": 0.000225418, + "total_mb": 0.225418, + "circuit.dat": 6176, + "code.tar.gz": 497, + "circuit.zkey": 2580, + "verification_key": 2925 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", + "Model:": "85", + "CPU(s):": "96", + "BogoMIPS:": "5400.00", + "L2 cache:": "48 MiB (48 instances)", + "L3 cache:": "66 MiB (2 instances)", + "Stepping:": "4", + "L1d cache:": "1.5 MiB (48 instances)", + "L1i cache:": "1.5 MiB (48 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "46 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", + "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", + "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Core(s) per socket:": "24", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", + "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", + "Vulnerability Meltdown:": "Mitigation; PTI", + "Vulnerability Retbleed:": "Mitigation; IBRS", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", + "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": 0, + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0, + "num_wires": 4, + "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", + "witness_compiler": "c++" + }, + { + "circuit_id": "c6b7c7c4-a68c-4c52-a44d-c430303e9c83", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-14T17:56:06.666Z", + "proving_scheme": "groth16", + "status": "Ready", + "compute_time": "P0DT00H00M07.640262S", + "compute_times": { + "total": 7.717317624017596, + "queued": 1.153472, + "clean_up": 0.001708121970295906, + "create_cpp": 0.055834874510765076, + "file_setup": 0.26282420568168163, + "compile_cpp": 4.616852128878236, + "create_r1cs": 0.01816796325147152, + "save_results": 0.005182689055800438, + "get_r1cs_info": 0.0008097067475318909, + "groth16_setup": 1.4200150053948164, + "export_verification_key": 1.3325735349208117, + "download_trusted_setup_file": 0.0028655603528022766 + }, + "file_sizes": { + "total": 225418, + "circuit": 213240, + "total_gb": 0.000225418, + "total_mb": 0.225418, + "circuit.dat": 6176, + "code.tar.gz": 497, + "circuit.zkey": 2580, + "verification_key": 2925 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", + "Model:": "85", + "CPU(s):": "96", + "BogoMIPS:": "5400.00", + "L2 cache:": "48 MiB (48 instances)", + "L3 cache:": "66 MiB (2 instances)", + "Stepping:": "4", + "L1d cache:": "1.5 MiB (48 instances)", + "L1i cache:": "1.5 MiB (48 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "46 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", + "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", + "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Core(s) per socket:": "24", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", + "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", + "Vulnerability Meltdown:": "Mitigation; PTI", + "Vulnerability Retbleed:": "Mitigation; IBRS", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", + "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": 0, + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0, + "num_wires": 4, + "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", + "witness_compiler": "c++" + }, + { + "circuit_id": "7ce11338-e787-4c30-872e-4994cf25cd21", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-14T17:55:47.449Z", + "proving_scheme": "groth16", + "status": "Ready", + "compute_time": "P0DT00H00M07.649332S", + "compute_times": { + "total": 7.72703692317009, + "queued": 1.083808, + "clean_up": 0.0017609763890504837, + "create_cpp": 0.055810270830988884, + "file_setup": 0.23338888958096504, + "compile_cpp": 4.682565299794078, + "create_r1cs": 0.017131242901086807, + "save_results": 0.005780013278126717, + "get_r1cs_info": 0.0008372049778699875, + "groth16_setup": 1.321879891678691, + "export_verification_key": 1.4050091002136469, + "download_trusted_setup_file": 0.0024436842650175095 + }, + "file_sizes": { + "total": 225418, + "circuit": 213240, + "total_gb": 0.000225418, + "total_mb": 0.225418, + "circuit.dat": 6176, + "code.tar.gz": 497, + "circuit.zkey": 2580, + "verification_key": 2925 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", + "Model:": "85", + "CPU(s):": "96", + "BogoMIPS:": "5400.00", + "L2 cache:": "48 MiB (48 instances)", + "L3 cache:": "66 MiB (2 instances)", + "Stepping:": "4", + "L1d cache:": "1.5 MiB (48 instances)", + "L1i cache:": "1.5 MiB (48 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "46 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", + "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", + "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Core(s) per socket:": "24", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", + "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", + "Vulnerability Meltdown:": "Mitigation; PTI", + "Vulnerability Retbleed:": "Mitigation; IBRS", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", + "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": 0, + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0, + "num_wires": 4, + "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", + "witness_compiler": "c++" + }, + { + "circuit_id": "21b7b98f-ac89-4036-984a-9b7d76c8246e", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-14T17:54:57.998Z", + "proving_scheme": "groth16", + "status": "Ready", + "compute_time": "P0DT00H00M07.709162S", + "compute_times": { + "total": 7.77805152349174, + "queued": 1.14492, + "clean_up": 0.0016839038580656052, + "create_cpp": 0.04769276827573776, + "file_setup": 0.24134804122149944, + "compile_cpp": 4.741177011281252, + "create_r1cs": 0.01839756965637207, + "save_results": 0.00636446475982666, + "get_r1cs_info": 0.0007227305322885513, + "groth16_setup": 1.3326963353902102, + "export_verification_key": 1.3850416559726, + "download_trusted_setup_file": 0.0024724528193473816 + }, + "file_sizes": { + "total": 225418, + "circuit": 213240, + "total_gb": 0.000225418, + "total_mb": 0.225418, + "circuit.dat": 6176, + "code.tar.gz": 497, + "circuit.zkey": 2580, + "verification_key": 2925 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", + "Model:": "85", + "CPU(s):": "96", + "BogoMIPS:": "5400.00", + "L2 cache:": "48 MiB (48 instances)", + "L3 cache:": "66 MiB (2 instances)", + "Stepping:": "4", + "L1d cache:": "1.5 MiB (48 instances)", + "L1i cache:": "1.5 MiB (48 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "46 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", + "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", + "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Core(s) per socket:": "24", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", + "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", + "Vulnerability Meltdown:": "Mitigation; PTI", + "Vulnerability Retbleed:": "Mitigation; IBRS", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", + "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": 0, + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0, + "num_wires": 4, + "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", + "witness_compiler": "c++" + }, + { + "circuit_id": "1ea845af-4477-4887-b4c9-1fc60922c64a", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-14T17:54:16.166Z", + "proving_scheme": "groth16", + "status": "Ready", + "compute_time": "P0DT00H00M07.418977S", + "compute_times": { + "total": 7.494983484968543, + "queued": 1.149669, + "clean_up": 0.0016745738685131073, + "create_cpp": 0.05047656036913395, + "file_setup": 0.2317434661090374, + "compile_cpp": 4.548192359507084, + "create_r1cs": 0.01588592678308487, + "save_results": 0.0058114491403102875, + "get_r1cs_info": 0.0006539300084114075, + "groth16_setup": 1.359997482970357, + "export_verification_key": 1.2780188340693712, + "download_trusted_setup_file": 0.0020805764943361282 + }, + "file_sizes": { + "total": 225418, + "circuit": 213240, + "total_gb": 0.000225418, + "total_mb": 0.225418, + "circuit.dat": 6176, + "code.tar.gz": 497, + "circuit.zkey": 2580, + "verification_key": 2925 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", + "Model:": "85", + "CPU(s):": "96", + "BogoMIPS:": "5400.00", + "L2 cache:": "48 MiB (48 instances)", + "L3 cache:": "66 MiB (2 instances)", + "Stepping:": "4", + "L1d cache:": "1.5 MiB (48 instances)", + "L1i cache:": "1.5 MiB (48 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "46 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", + "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", + "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Core(s) per socket:": "24", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", + "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", + "Vulnerability Meltdown:": "Mitigation; PTI", + "Vulnerability Retbleed:": "Mitigation; IBRS", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", + "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": 0, + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0, + "num_wires": 4, + "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", + "witness_compiler": "c++" + }, + { + "circuit_id": "ae8e8612-b57b-484a-992b-a2e9077ded25", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-14T17:53:57.024Z", + "proving_scheme": "groth16", + "status": "Ready", + "compute_time": "P0DT00H00M07.568414S", + "compute_times": { + "total": 7.645044168457389, + "queued": 1.146369, + "clean_up": 0.0016998127102851868, + "create_cpp": 0.051619796082377434, + "file_setup": 0.24771465547382832, + "compile_cpp": 4.563909590244293, + "create_r1cs": 0.017467238008975983, + "save_results": 0.0046049561351537704, + "get_r1cs_info": 0.0007205326110124588, + "groth16_setup": 1.392288465052843, + "export_verification_key": 1.3620477262884378, + "download_trusted_setup_file": 0.0024884194135665894 + }, + "file_sizes": { + "total": 225418, + "circuit": 213240, + "total_gb": 0.000225418, + "total_mb": 0.225418, + "circuit.dat": 6176, + "code.tar.gz": 497, + "circuit.zkey": 2580, + "verification_key": 2925 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", + "Model:": "85", + "CPU(s):": "96", + "BogoMIPS:": "5400.00", + "L2 cache:": "48 MiB (48 instances)", + "L3 cache:": "66 MiB (2 instances)", + "Stepping:": "4", + "L1d cache:": "1.5 MiB (48 instances)", + "L1i cache:": "1.5 MiB (48 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "46 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", + "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", + "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Core(s) per socket:": "24", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", + "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", + "Vulnerability Meltdown:": "Mitigation; PTI", + "Vulnerability Retbleed:": "Mitigation; IBRS", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", + "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": 0, + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0, + "num_wires": 4, + "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", + "witness_compiler": "c++" + }, + { + "circuit_id": "f2be0b1e-405f-4793-82eb-31ae4233e9b6", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-14T17:48:07.274Z", + "proving_scheme": "groth16", + "status": "Ready", + "compute_time": "P0DT00H00M07.634375S", + "compute_times": { + "total": 7.711648900061846, + "queued": 1.151518, + "clean_up": 0.0016132276505231857, + "create_cpp": 0.051139988005161285, + "file_setup": 0.23978900723159313, + "compile_cpp": 4.6589622385799885, + "create_r1cs": 0.010407604277133942, + "save_results": 0.0053712837398052216, + "get_r1cs_info": 0.0006775856018066406, + "groth16_setup": 1.376387370750308, + "export_verification_key": 1.364480024203658, + "download_trusted_setup_file": 0.0024138204753398895 + }, + "file_sizes": { + "total": 225418, + "circuit": 213240, + "total_gb": 0.000225418, + "total_mb": 0.225418, + "circuit.dat": 6176, + "code.tar.gz": 497, + "circuit.zkey": 2580, + "verification_key": 2925 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", + "Model:": "85", + "CPU(s):": "96", + "BogoMIPS:": "5400.00", + "L2 cache:": "48 MiB (48 instances)", + "L3 cache:": "66 MiB (2 instances)", + "Stepping:": "4", + "L1d cache:": "1.5 MiB (48 instances)", + "L1i cache:": "1.5 MiB (48 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "46 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", + "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", + "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Core(s) per socket:": "24", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", + "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", + "Vulnerability Meltdown:": "Mitigation; PTI", + "Vulnerability Retbleed:": "Mitigation; IBRS", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", + "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": 0, + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0, + "num_wires": 4, + "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", + "witness_compiler": "c++" + }, + { + "circuit_id": "65318a49-b41d-4ff8-897a-1cdebf6379cd", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-14T17:46:27.705Z", + "proving_scheme": "groth16", + "status": "Ready", + "compute_time": "P0DT00H00M07.794943S", + "compute_times": { + "total": 7.869940539821982, + "queued": 1.12935, + "clean_up": 0.001537129282951355, + "create_cpp": 0.046995386481285095, + "file_setup": 0.24573437683284283, + "compile_cpp": 4.844812747091055, + "create_r1cs": 0.010960787534713745, + "save_results": 0.00475454144179821, + "get_r1cs_info": 0.0004996396601200104, + "groth16_setup": 1.4448041189461946, + "export_verification_key": 1.2678779624402523, + "download_trusted_setup_file": 0.0016316790133714676 + }, + "file_sizes": { + "total": 225418, + "circuit": 213240, + "total_gb": 0.000225418, + "total_mb": 0.225418, + "circuit.dat": 6176, + "code.tar.gz": 497, + "circuit.zkey": 2580, + "verification_key": 2925 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", + "Model:": "85", + "CPU(s):": "96", + "BogoMIPS:": "5400.00", + "L2 cache:": "48 MiB (48 instances)", + "L3 cache:": "66 MiB (2 instances)", + "Stepping:": "4", + "L1d cache:": "1.5 MiB (48 instances)", + "L1i cache:": "1.5 MiB (48 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "46 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", + "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", + "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Core(s) per socket:": "24", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", + "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", + "Vulnerability Meltdown:": "Mitigation; PTI", + "Vulnerability Retbleed:": "Mitigation; IBRS", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", + "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": 0, + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0, + "num_wires": 4, + "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", + "witness_compiler": "c++" + }, + { + "circuit_id": "2c7b1bf7-070e-4c11-a948-0f02bf06248a", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-14T17:40:38.978Z", + "proving_scheme": "groth16", + "status": "Ready", + "compute_time": "P0DT00H00M07.664033S", + "compute_times": { + "total": 7.736426949501038, + "queued": 1.136515, + "clean_up": 0.001613633707165718, + "create_cpp": 0.04840335436165333, + "file_setup": 0.22559695690870285, + "compile_cpp": 4.761518849059939, + "create_r1cs": 0.01633301004767418, + "save_results": 0.0055974628776311874, + "get_r1cs_info": 0.0007108338177204132, + "groth16_setup": 1.3652087282389402, + "export_verification_key": 1.308535685762763, + "download_trusted_setup_file": 0.0024619195610284805 + }, + "file_sizes": { + "total": 225418, + "circuit": 213240, + "total_gb": 0.000225418, + "total_mb": 0.225418, + "circuit.dat": 6176, + "code.tar.gz": 497, + "circuit.zkey": 2580, + "verification_key": 2925 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", + "Model:": "85", + "CPU(s):": "96", + "BogoMIPS:": "5400.00", + "L2 cache:": "48 MiB (48 instances)", + "L3 cache:": "66 MiB (2 instances)", + "Stepping:": "4", + "L1d cache:": "1.5 MiB (48 instances)", + "L1i cache:": "1.5 MiB (48 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "46 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", + "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", + "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Core(s) per socket:": "24", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", + "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", + "Vulnerability Meltdown:": "Mitigation; PTI", + "Vulnerability Retbleed:": "Mitigation; IBRS", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", + "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": 0, + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0, + "num_wires": 4, + "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", + "witness_compiler": "c++" + }, + { + "circuit_id": "87fdc20a-7e4b-4244-931d-ab5548da9644", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-14T17:40:08.434Z", + "proving_scheme": "groth16", + "status": "Ready", + "compute_time": "P0DT00H00M07.326295S", + "compute_times": { + "total": 7.400858150795102, + "queued": 1.118441, + "clean_up": 0.0016694236546754837, + "create_cpp": 0.04726249352097511, + "file_setup": 0.22566148824989796, + "compile_cpp": 4.567545756697655, + "create_r1cs": 0.01814442314207554, + "save_results": 0.005112992599606514, + "get_r1cs_info": 0.0006955582648515701, + "groth16_setup": 1.211182564496994, + "export_verification_key": 1.3208420500159264, + "download_trusted_setup_file": 0.002416292205452919 + }, + "file_sizes": { + "total": 225418, + "circuit": 213240, + "total_gb": 0.000225418, + "total_mb": 0.225418, + "circuit.dat": 6176, + "code.tar.gz": 497, + "circuit.zkey": 2580, + "verification_key": 2925 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", + "Model:": "85", + "CPU(s):": "96", + "BogoMIPS:": "5400.00", + "L2 cache:": "48 MiB (48 instances)", + "L3 cache:": "66 MiB (2 instances)", + "Stepping:": "4", + "L1d cache:": "1.5 MiB (48 instances)", + "L1i cache:": "1.5 MiB (48 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "46 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", + "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", + "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Core(s) per socket:": "24", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", + "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", + "Vulnerability Meltdown:": "Mitigation; PTI", + "Vulnerability Retbleed:": "Mitigation; IBRS", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", + "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": 0, + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0, + "num_wires": 4, + "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", + "witness_compiler": "c++" + }, + { + "circuit_id": "48fa4f1d-8be2-4377-b0a3-e847a4c9d0b4", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-14T17:39:39.153Z", + "proving_scheme": "groth16", + "status": "Ready", + "compute_time": "P0DT00H00M07.594315S", + "compute_times": { + "total": 7.668981021270156, + "queued": 14.286631, + "clean_up": 0.001645909622311592, + "create_cpp": 0.04893757589161396, + "file_setup": 0.2278295625001192, + "compile_cpp": 4.749169761314988, + "create_r1cs": 0.018283158540725708, + "save_results": 0.00601276196539402, + "get_r1cs_info": 0.0007984023541212082, + "groth16_setup": 1.3189964778721333, + "export_verification_key": 1.2939927615225315, + "download_trusted_setup_file": 0.0029653161764144897 + }, + "file_sizes": { + "total": 225418, + "circuit": 213240, + "total_gb": 0.000225418, + "total_mb": 0.225418, + "circuit.dat": 6176, + "code.tar.gz": 497, + "circuit.zkey": 2580, + "verification_key": 2925 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", + "Model:": "85", + "CPU(s):": "96", + "BogoMIPS:": "5400.00", + "L2 cache:": "48 MiB (48 instances)", + "L3 cache:": "66 MiB (2 instances)", + "Stepping:": "4", + "L1d cache:": "1.5 MiB (48 instances)", + "L1i cache:": "1.5 MiB (48 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "46 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", + "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", + "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Core(s) per socket:": "24", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", + "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", + "Vulnerability Meltdown:": "Mitigation; PTI", + "Vulnerability Retbleed:": "Mitigation; IBRS", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", + "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": 0, + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0, + "num_wires": 4, + "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", + "witness_compiler": "c++" + }, + { + "circuit_id": "3719aee6-7aa8-443b-9ccd-c6dd06bc0947", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-14T16:57:38.604Z", + "proving_scheme": "groth16", + "status": "Ready", + "compute_time": "P0DT00H00M07.483459S", + "compute_times": { + "total": 7.563022721558809, + "queued": 17.659509, + "clean_up": 0.0018138419836759567, + "create_cpp": 0.04657592810690403, + "file_setup": 0.25030036829411983, + "compile_cpp": 4.458605896681547, + "create_r1cs": 0.010267989709973335, + "save_results": 0.006375599652528763, + "get_r1cs_info": 0.0003939960151910782, + "groth16_setup": 1.3946119882166386, + "export_verification_key": 1.3923067282885313, + "download_trusted_setup_file": 0.0011770892888307571 + }, + "file_sizes": { + "total": 225418, + "circuit": 213240, + "total_gb": 0.000225418, + "total_mb": 0.225418, + "circuit.dat": 6176, + "code.tar.gz": 497, + "circuit.zkey": 2580, + "verification_key": 2925 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", + "Model:": "85", + "CPU(s):": "96", + "BogoMIPS:": "5400.00", + "L2 cache:": "48 MiB (48 instances)", + "L3 cache:": "66 MiB (2 instances)", + "Stepping:": "4", + "L1d cache:": "1.5 MiB (48 instances)", + "L1i cache:": "1.5 MiB (48 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "46 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", + "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", + "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Core(s) per socket:": "24", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", + "On-line CPU(s) list:": "0,1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41-49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89-95", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88", + "Vulnerability Meltdown:": "Mitigation; PTI", + "Vulnerability Retbleed:": "Mitigation; IBRS", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", + "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": 0, + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0, + "num_wires": 4, + "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", + "witness_compiler": "c++" + }, + { + "circuit_id": "fdaa2dd0-a1ed-4313-ad5b-bd23d130fb47", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-14T16:57:37.752Z", + "proving_scheme": "groth16", + "status": "Ready", + "compute_time": "P0DT00H00M07.576781S", + "compute_times": { + "total": 7.655046196654439, + "queued": 18.143709, + "clean_up": 0.0016271453350782394, + "create_cpp": 0.052942270413041115, + "file_setup": 0.23309797048568726, + "compile_cpp": 4.72314483858645, + "create_r1cs": 0.01772555708885193, + "save_results": 0.00583222322165966, + "get_r1cs_info": 0.0007539559155702591, + "groth16_setup": 1.292042575776577, + "export_verification_key": 1.3249626532196999, + "download_trusted_setup_file": 0.002419590950012207 + }, + "file_sizes": { + "total": 225424, + "circuit": 213240, + "total_gb": 0.000225424, + "total_mb": 0.225424, + "circuit.dat": 6176, + "code.tar.gz": 503, + "circuit.zkey": 2580, + "verification_key": 2925 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", + "Model:": "85", + "CPU(s):": "96", + "BogoMIPS:": "5400.00", + "L2 cache:": "48 MiB (48 instances)", + "L3 cache:": "66 MiB (2 instances)", + "Stepping:": "4", + "L1d cache:": "1.5 MiB (48 instances)", + "L1i cache:": "1.5 MiB (48 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "46 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", + "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", + "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Core(s) per socket:": "24", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", + "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", + "Vulnerability Meltdown:": "Mitigation; PTI", + "Vulnerability Retbleed:": "Mitigation; IBRS", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", + "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": 0, + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0, + "num_wires": 4, + "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", + "witness_compiler": "c++" + }, + { + "circuit_id": "3f8e4d03-69b6-43c8-93c1-d447edf67b35", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-14T16:57:37.266Z", + "proving_scheme": "groth16", + "status": "Ready", + "compute_time": "P0DT00H00M07.236164S", + "compute_times": { + "total": 7.311267904937267, + "queued": 1.155332, + "clean_up": 0.0008716173470020294, + "create_cpp": 0.05489862523972988, + "file_setup": 0.2424852568656206, + "compile_cpp": 4.473982494324446, + "create_r1cs": 0.01902007684111595, + "save_results": 0.005060611292719841, + "get_r1cs_info": 0.00068698450922966, + "groth16_setup": 1.2233653031289577, + "export_verification_key": 1.2878586202859879, + "download_trusted_setup_file": 0.002506690099835396 + }, + "file_sizes": { + "total": 225418, + "circuit": 213240, + "total_gb": 0.000225418, + "total_mb": 0.225418, + "circuit.dat": 6176, + "code.tar.gz": 497, + "circuit.zkey": 2580, + "verification_key": 2925 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", + "Model:": "85", + "CPU(s):": "96", + "BogoMIPS:": "5400.00", + "L2 cache:": "48 MiB (48 instances)", + "L3 cache:": "66 MiB (2 instances)", + "Stepping:": "4", + "L1d cache:": "1.5 MiB (48 instances)", + "L1i cache:": "1.5 MiB (48 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "46 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", + "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", + "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Core(s) per socket:": "24", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", + "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", + "Vulnerability Meltdown:": "Mitigation; PTI", + "Vulnerability Retbleed:": "Mitigation; IBRS", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", + "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": 0, + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0, + "num_wires": 4, + "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", + "witness_compiler": "c++" + }, + { + "circuit_id": "c55e85d0-37b5-4821-b205-f033b2bb85a9", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-14T16:57:37.258Z", + "proving_scheme": "groth16", + "status": "Ready", + "compute_time": "P0DT00H00M07.909980S", + "compute_times": { + "total": 7.98988794349134, + "queued": 9.595895, + "clean_up": 0.0014979057013988495, + "create_cpp": 0.056887710466980934, + "file_setup": 0.2363742906600237, + "compile_cpp": 4.887871127575636, + "create_r1cs": 0.016758300364017487, + "save_results": 0.00578792579472065, + "get_r1cs_info": 0.000655466690659523, + "groth16_setup": 1.3654928021132946, + "export_verification_key": 1.4161598179489374, + "download_trusted_setup_file": 0.00191524438560009 + }, + "file_sizes": { + "total": 225450, + "circuit": 213240, + "total_gb": 0.00022545, + "total_mb": 0.22545, + "circuit.dat": 6176, + "code.tar.gz": 529, + "circuit.zkey": 2580, + "verification_key": 2925 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tgz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", + "Model:": "85", + "CPU(s):": "96", + "BogoMIPS:": "5400.00", + "L2 cache:": "48 MiB (48 instances)", + "L3 cache:": "66 MiB (2 instances)", + "Stepping:": "4", + "L1d cache:": "1.5 MiB (48 instances)", + "L1i cache:": "1.5 MiB (48 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "46 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", + "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", + "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Core(s) per socket:": "24", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", + "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", + "Vulnerability Meltdown:": "Mitigation; PTI", + "Vulnerability Retbleed:": "Mitigation; IBRS", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", + "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": 0, + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0, + "num_wires": 4, + "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", + "witness_compiler": "c++" + }, + { + "circuit_id": "6a61d82c-84e8-4c6b-9cbc-afa59a3dd297", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-14T16:50:20.025Z", + "proving_scheme": "groth16", + "status": "Ready", + "compute_time": "P0DT00H00M07.851374S", + "compute_times": { + "total": 7.936480965465307, + "queued": 1.058339, + "clean_up": 0.001843426376581192, + "create_cpp": 0.04711670242249966, + "file_setup": 0.2590673416852951, + "compile_cpp": 4.6749470960348845, + "create_r1cs": 0.011059625074267387, + "save_results": 0.006622841581702232, + "get_r1cs_info": 0.0006548557430505753, + "groth16_setup": 1.4773112516850233, + "export_verification_key": 1.4550056345760822, + "download_trusted_setup_file": 0.002507215365767479 + }, + "file_sizes": { + "total": 225418, + "circuit": 213240, + "total_gb": 0.000225418, + "total_mb": 0.225418, + "circuit.dat": 6176, + "code.tar.gz": 497, + "circuit.zkey": 2580, + "verification_key": 2925 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", + "Model:": "85", + "CPU(s):": "96", + "BogoMIPS:": "5400.00", + "L2 cache:": "48 MiB (48 instances)", + "L3 cache:": "66 MiB (2 instances)", + "Stepping:": "4", + "L1d cache:": "1.5 MiB (48 instances)", + "L1i cache:": "1.5 MiB (48 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "46 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", + "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", + "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Core(s) per socket:": "24", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", + "On-line CPU(s) list:": "0,1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41-49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89-95", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88", + "Vulnerability Meltdown:": "Mitigation; PTI", + "Vulnerability Retbleed:": "Mitigation; IBRS", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", + "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": 0, + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0, + "num_wires": 4, + "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", + "witness_compiler": "c++" + }, + { + "circuit_id": "f076d1e9-1221-4e4f-b93a-5d1a65e70f91", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-14T16:50:18.711Z", + "proving_scheme": "groth16", + "status": "Ready", + "compute_time": "P0DT00H00M07.671909S", + "compute_times": { + "total": 7.752114692702889, + "queued": 1.120105, + "clean_up": 0.0017052926123142242, + "create_cpp": 0.0554554108530283, + "file_setup": 0.254299521446228, + "compile_cpp": 4.53538416698575, + "create_r1cs": 0.019296107813715935, + "save_results": 0.005684012547135353, + "get_r1cs_info": 0.000739341601729393, + "groth16_setup": 1.4482497554272413, + "export_verification_key": 1.4276448003947735, + "download_trusted_setup_file": 0.0031732507050037384 + }, + "file_sizes": { + "total": 225450, + "circuit": 213240, + "total_gb": 0.00022545, + "total_mb": 0.22545, + "circuit.dat": 6176, + "code.tar.gz": 529, + "circuit.zkey": 2580, + "verification_key": 2925 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tgz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", + "Model:": "85", + "CPU(s):": "96", + "BogoMIPS:": "5400.00", + "L2 cache:": "48 MiB (48 instances)", + "L3 cache:": "66 MiB (2 instances)", + "Stepping:": "4", + "L1d cache:": "1.5 MiB (48 instances)", + "L1i cache:": "1.5 MiB (48 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "46 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", + "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", + "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Core(s) per socket:": "24", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", + "On-line CPU(s) list:": "0,1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41-49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89-95", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88", + "Vulnerability Meltdown:": "Mitigation; PTI", + "Vulnerability Retbleed:": "Mitigation; IBRS", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", + "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": 0, + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0, + "num_wires": 4, + "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", + "witness_compiler": "c++" + }, + { + "circuit_id": "3ac018ab-21c3-4149-9bec-ae77a8fb49ab", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-14T16:50:18.680Z", + "proving_scheme": "groth16", + "status": "Ready", + "compute_time": "P0DT00H00M07.682966S", + "compute_times": { + "total": 7.775568487122655, + "queued": 1.374417, + "clean_up": 0.0017570890486240387, + "create_cpp": 0.04991978965699673, + "file_setup": 0.2661570589989424, + "compile_cpp": 4.481879696249962, + "create_r1cs": 0.017130015417933464, + "save_results": 0.005561588332056999, + "get_r1cs_info": 0.0007625855505466461, + "groth16_setup": 1.442964818328619, + "export_verification_key": 1.5065135695040226, + "download_trusted_setup_file": 0.00246431864798069 + }, + "file_sizes": { + "total": 225418, + "circuit": 213240, + "total_gb": 0.000225418, + "total_mb": 0.225418, + "circuit.dat": 6176, + "code.tar.gz": 497, + "circuit.zkey": 2580, + "verification_key": 2925 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", + "Model:": "85", + "CPU(s):": "96", + "BogoMIPS:": "5400.00", + "L2 cache:": "48 MiB (48 instances)", + "L3 cache:": "66 MiB (2 instances)", + "Stepping:": "4", + "L1d cache:": "1.5 MiB (48 instances)", + "L1i cache:": "1.5 MiB (48 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "46 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", + "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", + "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Core(s) per socket:": "24", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", + "On-line CPU(s) list:": "0,1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41-49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89-95", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88", + "Vulnerability Meltdown:": "Mitigation; PTI", + "Vulnerability Retbleed:": "Mitigation; IBRS", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", + "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": 0, + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0, + "num_wires": 4, + "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", + "witness_compiler": "c++" + }, + { + "circuit_id": "ce96ccac-95af-43a0-a81e-cd23e9068d37", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-14T16:50:18.623Z", + "proving_scheme": "groth16", + "status": "Ready", + "compute_time": "P0DT00H00M07.668288S", + "compute_times": { + "total": 7.74694580771029, + "queued": 1.160826, + "clean_up": 0.0016458947211503983, + "create_cpp": 0.05009524151682854, + "file_setup": 0.27001221664249897, + "compile_cpp": 4.7398079466074705, + "create_r1cs": 0.01706443540751934, + "save_results": 0.0056135449558496475, + "get_r1cs_info": 0.0006729774177074432, + "groth16_setup": 1.340934656560421, + "export_verification_key": 1.3180796634405851, + "download_trusted_setup_file": 0.002530023455619812 + }, + "file_sizes": { + "total": 225424, + "circuit": 213240, + "total_gb": 0.000225424, + "total_mb": 0.225424, + "circuit.dat": 6176, + "code.tar.gz": 503, + "circuit.zkey": 2580, + "verification_key": 2925 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", + "Model:": "85", + "CPU(s):": "96", + "BogoMIPS:": "5400.00", + "L2 cache:": "48 MiB (48 instances)", + "L3 cache:": "66 MiB (2 instances)", + "Stepping:": "4", + "L1d cache:": "1.5 MiB (48 instances)", + "L1i cache:": "1.5 MiB (48 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "46 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", + "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", + "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Core(s) per socket:": "24", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", + "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", + "Vulnerability Meltdown:": "Mitigation; PTI", + "Vulnerability Retbleed:": "Mitigation; IBRS", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", + "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": 0, + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0, + "num_wires": 4, + "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", + "witness_compiler": "c++" + }, + { + "circuit_id": "d2151d0c-5dcb-49ae-b451-f763b9fb0830", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-14T16:49:27.765Z", + "proving_scheme": "groth16", + "status": "Ready", + "compute_time": "P0DT00H00M07.710537S", + "compute_times": { + "total": 7.809466190636158, + "queued": 1.098008, + "clean_up": 0.001737702637910843, + "create_cpp": 0.048770468682050705, + "file_setup": 0.2964275795966387, + "compile_cpp": 4.62178766913712, + "create_r1cs": 0.016994547098875046, + "save_results": 0.005755074322223663, + "get_r1cs_info": 0.000483684241771698, + "groth16_setup": 1.4868505895137787, + "export_verification_key": 1.328504517674446, + "download_trusted_setup_file": 0.001583334058523178 + }, + "file_sizes": { + "total": 225418, + "circuit": 213240, + "total_gb": 0.000225418, + "total_mb": 0.225418, + "circuit.dat": 6176, + "code.tar.gz": 497, + "circuit.zkey": 2580, + "verification_key": 2925 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", + "Model:": "85", + "CPU(s):": "96", + "BogoMIPS:": "5400.00", + "L2 cache:": "48 MiB (48 instances)", + "L3 cache:": "66 MiB (2 instances)", + "Stepping:": "4", + "L1d cache:": "1.5 MiB (48 instances)", + "L1i cache:": "1.5 MiB (48 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "46 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", + "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", + "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Core(s) per socket:": "24", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", + "On-line CPU(s) list:": "0,1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41-49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89-95", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88", + "Vulnerability Meltdown:": "Mitigation; PTI", + "Vulnerability Retbleed:": "Mitigation; IBRS", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", + "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": 0, + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0, + "num_wires": 4, + "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", + "witness_compiler": "c++" + }, + { + "circuit_id": "4b8bd698-0ec8-4a3c-b054-dc94702908b8", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-14T16:49:26.693Z", + "proving_scheme": "groth16", + "status": "Ready", + "compute_time": "P0DT00H00M07.874326S", + "compute_times": { + "total": 7.964226454496384, + "queued": 1.179343, + "clean_up": 0.0016873739659786224, + "create_cpp": 0.049062516540288925, + "file_setup": 0.26052811928093433, + "compile_cpp": 4.61213406175375, + "create_r1cs": 0.018942877650260925, + "save_results": 0.006677566096186638, + "get_r1cs_info": 0.0005794204771518707, + "groth16_setup": 1.48171117156744, + "export_verification_key": 1.5311051458120346, + "download_trusted_setup_file": 0.0014842581003904343 + }, + "file_sizes": { + "total": 225424, + "circuit": 213240, + "total_gb": 0.000225424, + "total_mb": 0.225424, + "circuit.dat": 6176, + "code.tar.gz": 503, + "circuit.zkey": 2580, + "verification_key": 2925 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", + "Model:": "85", + "CPU(s):": "96", + "BogoMIPS:": "5400.00", + "L2 cache:": "48 MiB (48 instances)", + "L3 cache:": "66 MiB (2 instances)", + "Stepping:": "4", + "L1d cache:": "1.5 MiB (48 instances)", + "L1i cache:": "1.5 MiB (48 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "46 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", + "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", + "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Core(s) per socket:": "24", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", + "On-line CPU(s) list:": "0,1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41-49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89-95", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88", + "Vulnerability Meltdown:": "Mitigation; PTI", + "Vulnerability Retbleed:": "Mitigation; IBRS", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", + "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": 0, + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0, + "num_wires": 4, + "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", + "witness_compiler": "c++" + }, + { + "circuit_id": "155b4b85-b7ae-4f95-a4ed-4147a7de7fe6", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-14T16:49:26.383Z", + "proving_scheme": "groth16", + "status": "Ready", + "compute_time": "P0DT00H00M07.749949S", + "compute_times": { + "total": 7.829013995826244, + "queued": 1.142999, + "clean_up": 0.0008353088051080704, + "create_cpp": 0.053893035277724266, + "file_setup": 0.24244733341038227, + "compile_cpp": 4.61862338334322, + "create_r1cs": 0.015483187511563301, + "save_results": 0.004380660131573677, + "get_r1cs_info": 0.0006992518901824951, + "groth16_setup": 1.4251426942646503, + "export_verification_key": 1.4645712282508612, + "download_trusted_setup_file": 0.0024489928036928177 + }, + "file_sizes": { + "total": 225418, + "circuit": 213240, + "total_gb": 0.000225418, + "total_mb": 0.225418, + "circuit.dat": 6176, + "code.tar.gz": 497, + "circuit.zkey": 2580, + "verification_key": 2925 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", + "Model:": "85", + "CPU(s):": "96", + "BogoMIPS:": "5400.00", + "L2 cache:": "48 MiB (48 instances)", + "L3 cache:": "66 MiB (2 instances)", + "Stepping:": "4", + "L1d cache:": "1.5 MiB (48 instances)", + "L1i cache:": "1.5 MiB (48 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "46 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", + "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", + "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Core(s) per socket:": "24", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", + "On-line CPU(s) list:": "0,1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41-49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89-95", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88", + "Vulnerability Meltdown:": "Mitigation; PTI", + "Vulnerability Retbleed:": "Mitigation; IBRS", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", + "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": 0, + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0, + "num_wires": 4, + "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", + "witness_compiler": "c++" + }, + { + "circuit_id": "413361ac-bcaa-4057-85e6-479dc0e9deba", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-14T16:49:26.324Z", + "proving_scheme": "groth16", + "status": "Ready", + "compute_time": "P0DT00H00M07.642788S", + "compute_times": { + "total": 7.720644621178508, + "queued": 1.162661, + "clean_up": 0.0008935760706663132, + "create_cpp": 0.05431099981069565, + "file_setup": 0.2567560989409685, + "compile_cpp": 4.618247997015715, + "create_r1cs": 0.01814628764986992, + "save_results": 0.0049981530755758286, + "get_r1cs_info": 0.0009683482348918915, + "groth16_setup": 1.4208254627883434, + "export_verification_key": 1.342044984921813, + "download_trusted_setup_file": 0.002907775342464447 + }, + "file_sizes": { + "total": 225450, + "circuit": 213240, + "total_gb": 0.00022545, + "total_mb": 0.22545, + "circuit.dat": 6176, + "code.tar.gz": 529, + "circuit.zkey": 2580, + "verification_key": 2925 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tgz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", + "Model:": "85", + "CPU(s):": "96", + "BogoMIPS:": "5400.00", + "L2 cache:": "48 MiB (48 instances)", + "L3 cache:": "66 MiB (2 instances)", + "Stepping:": "4", + "L1d cache:": "1.5 MiB (48 instances)", + "L1i cache:": "1.5 MiB (48 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "46 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", + "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", + "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Core(s) per socket:": "24", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", + "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", + "Vulnerability Meltdown:": "Mitigation; PTI", + "Vulnerability Retbleed:": "Mitigation; IBRS", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", + "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": 0, + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0, + "num_wires": 4, + "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", + "witness_compiler": "c++" + }, + { + "circuit_id": "f6721499-2c00-429c-9215-306562087f3c", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-14T16:48:59.864Z", + "proving_scheme": "groth16", + "status": "Ready", + "compute_time": "P0DT00H00M07.476797S", + "compute_times": { + "total": 7.554694190621376, + "queued": 8.490739, + "clean_up": 0.001280084252357483, + "create_cpp": 0.04679052531719208, + "file_setup": 0.2480800412595272, + "compile_cpp": 4.608315961435437, + "create_r1cs": 0.010296281427145004, + "save_results": 0.005138525739312172, + "get_r1cs_info": 0.0006614606827497482, + "groth16_setup": 1.2760554868727922, + "export_verification_key": 1.3551383931189775, + "download_trusted_setup_file": 0.002459688112139702 + }, + "file_sizes": { + "total": 225418, + "circuit": 213240, + "total_gb": 0.000225418, + "total_mb": 0.225418, + "circuit.dat": 6176, + "code.tar.gz": 497, + "circuit.zkey": 2580, + "verification_key": 2925 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", + "Model:": "85", + "CPU(s):": "96", + "BogoMIPS:": "5400.00", + "L2 cache:": "48 MiB (48 instances)", + "L3 cache:": "66 MiB (2 instances)", + "Stepping:": "4", + "L1d cache:": "1.5 MiB (48 instances)", + "L1i cache:": "1.5 MiB (48 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "46 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", + "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", + "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Core(s) per socket:": "24", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", + "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", + "Vulnerability Meltdown:": "Mitigation; PTI", + "Vulnerability Retbleed:": "Mitigation; IBRS", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", + "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": 0, + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0, + "num_wires": 4, + "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", + "witness_compiler": "c++" + }, + { + "circuit_id": "c64d50b6-82b2-488e-b16a-d8579f7164b2", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-14T16:48:58.842Z", + "proving_scheme": "groth16", + "status": "Ready", + "compute_time": "P0DT00H00M07.682333S", + "compute_times": { + "total": 7.775689832866192, + "queued": 1.146722, + "clean_up": 0.0018197707831859589, + "create_cpp": 0.045808885246515274, + "file_setup": 0.2579942364245653, + "compile_cpp": 4.6305790320038795, + "create_r1cs": 0.0165061317384243, + "save_results": 0.006031488999724388, + "get_r1cs_info": 0.0005368776619434357, + "groth16_setup": 1.4302892293781042, + "export_verification_key": 1.3840640261769295, + "download_trusted_setup_file": 0.001457681879401207 + }, + "file_sizes": { + "total": 225450, + "circuit": 213240, + "total_gb": 0.00022545, + "total_mb": 0.22545, + "circuit.dat": 6176, + "code.tar.gz": 529, + "circuit.zkey": 2580, + "verification_key": 2925 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tgz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", + "Model:": "85", + "CPU(s):": "96", + "BogoMIPS:": "5400.00", + "L2 cache:": "48 MiB (48 instances)", + "L3 cache:": "66 MiB (2 instances)", + "Stepping:": "4", + "L1d cache:": "1.5 MiB (48 instances)", + "L1i cache:": "1.5 MiB (48 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "46 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", + "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", + "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Core(s) per socket:": "24", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", + "On-line CPU(s) list:": "0,1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41-49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89-95", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88", + "Vulnerability Meltdown:": "Mitigation; PTI", + "Vulnerability Retbleed:": "Mitigation; IBRS", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", + "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": 0, + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0, + "num_wires": 4, + "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", + "witness_compiler": "c++" + }, + { + "circuit_id": "fd68ec95-cb88-4944-a62e-d762e4d6e851", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-14T16:48:58.484Z", + "proving_scheme": "groth16", + "status": "Ready", + "compute_time": "P0DT00H00M07.845773S", + "compute_times": { + "total": 7.921329101547599, + "queued": 1.401368, + "clean_up": 0.0007218196988105774, + "create_cpp": 0.05786048248410225, + "file_setup": 0.303074324503541, + "compile_cpp": 4.705286420881748, + "create_r1cs": 0.0170378927141428, + "save_results": 0.005208676680922508, + "get_r1cs_info": 0.0006915386766195297, + "groth16_setup": 1.3473380841314793, + "export_verification_key": 1.4811212103813887, + "download_trusted_setup_file": 0.0025439634919166565 + }, + "file_sizes": { + "total": 225418, + "circuit": 213240, + "total_gb": 0.000225418, + "total_mb": 0.225418, + "circuit.dat": 6176, + "code.tar.gz": 497, + "circuit.zkey": 2580, + "verification_key": 2925 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", + "Model:": "85", + "CPU(s):": "96", + "BogoMIPS:": "5400.00", + "L2 cache:": "48 MiB (48 instances)", + "L3 cache:": "66 MiB (2 instances)", + "Stepping:": "4", + "L1d cache:": "1.5 MiB (48 instances)", + "L1i cache:": "1.5 MiB (48 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "46 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", + "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", + "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Core(s) per socket:": "24", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", + "On-line CPU(s) list:": "0,1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41-49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89-95", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88", + "Vulnerability Meltdown:": "Mitigation; PTI", + "Vulnerability Retbleed:": "Mitigation; IBRS", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", + "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": 0, + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0, + "num_wires": 4, + "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", + "witness_compiler": "c++" + }, + { + "circuit_id": "150e09f9-0ad0-4b12-9afa-1c95076c1ad2", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-14T16:48:58.436Z", + "proving_scheme": "groth16", + "status": "Ready", + "compute_time": "P0DT00H00M07.537626S", + "compute_times": { + "total": 7.609223047271371, + "queued": 1.174004, + "clean_up": 0.0018986072391271591, + "create_cpp": 0.04804324172437191, + "file_setup": 0.23359503969550133, + "compile_cpp": 4.719695445150137, + "create_r1cs": 0.017463305965065956, + "save_results": 0.005400665104389191, + "get_r1cs_info": 0.0008178930729627609, + "groth16_setup": 1.291828017681837, + "export_verification_key": 1.2875860054045916, + "download_trusted_setup_file": 0.002461083233356476 + }, + "file_sizes": { + "total": 225424, + "circuit": 213240, + "total_gb": 0.000225424, + "total_mb": 0.225424, + "circuit.dat": 6176, + "code.tar.gz": 503, + "circuit.zkey": 2580, + "verification_key": 2925 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", + "Model:": "85", + "CPU(s):": "96", + "BogoMIPS:": "5400.00", + "L2 cache:": "48 MiB (48 instances)", + "L3 cache:": "66 MiB (2 instances)", + "Stepping:": "4", + "L1d cache:": "1.5 MiB (48 instances)", + "L1i cache:": "1.5 MiB (48 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "46 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", + "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", + "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Core(s) per socket:": "24", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", + "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", + "Vulnerability Meltdown:": "Mitigation; PTI", + "Vulnerability Retbleed:": "Mitigation; IBRS", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", + "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": 0, + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0, + "num_wires": 4, + "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", + "witness_compiler": "c++" + }, + { + "circuit_id": "8697f2af-8ae6-406c-a49a-032242345f4c", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-14T16:48:08.500Z", + "proving_scheme": "groth16", + "status": "Ready", + "compute_time": "P0DT00H00M07.786954S", + "compute_times": { + "total": 7.866660824045539, + "queued": 26.529028, + "clean_up": 0.001429310068488121, + "create_cpp": 0.05666426755487919, + "file_setup": 0.24920494854450226, + "compile_cpp": 4.811976304277778, + "create_r1cs": 0.009921343997120857, + "save_results": 0.005788298323750496, + "get_r1cs_info": 0.000774867832660675, + "groth16_setup": 1.3699789196252823, + "export_verification_key": 1.3578939326107502, + "download_trusted_setup_file": 0.0025129076093435287 + }, + "file_sizes": { + "total": 225418, + "circuit": 213240, + "total_gb": 0.000225418, + "total_mb": 0.225418, + "circuit.dat": 6176, + "code.tar.gz": 497, + "circuit.zkey": 2580, + "verification_key": 2925 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", + "Model:": "85", + "CPU(s):": "96", + "BogoMIPS:": "5400.00", + "L2 cache:": "48 MiB (48 instances)", + "L3 cache:": "66 MiB (2 instances)", + "Stepping:": "4", + "L1d cache:": "1.5 MiB (48 instances)", + "L1i cache:": "1.5 MiB (48 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "46 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", + "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", + "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Core(s) per socket:": "24", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", + "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", + "Vulnerability Meltdown:": "Mitigation; PTI", + "Vulnerability Retbleed:": "Mitigation; IBRS", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", + "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": 0, + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0, + "num_wires": 4, + "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", + "witness_compiler": "c++" + }, + { + "circuit_id": "1d8ed536-7799-4104-9829-aab438b46c50", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-14T16:48:07.542Z", + "proving_scheme": "groth16", + "status": "Ready", + "compute_time": "P0DT00H00M07.742077S", + "compute_times": { + "total": 7.817316031083465, + "queued": 18.599385, + "clean_up": 0.0018254183232784271, + "create_cpp": 0.046345429494977, + "file_setup": 0.2319784890860319, + "compile_cpp": 4.7667300291359425, + "create_r1cs": 0.028794724494218826, + "save_results": 0.00572955422103405, + "get_r1cs_info": 0.0007030870765447617, + "groth16_setup": 1.3311582524329424, + "export_verification_key": 1.4022186826914549, + "download_trusted_setup_file": 0.0013777166604995728 + }, + "file_sizes": { + "total": 225418, + "circuit": 213240, + "total_gb": 0.000225418, + "total_mb": 0.225418, + "circuit.dat": 6176, + "code.tar.gz": 497, + "circuit.zkey": 2580, + "verification_key": 2925 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", + "Model:": "85", + "CPU(s):": "96", + "BogoMIPS:": "5400.00", + "L2 cache:": "48 MiB (48 instances)", + "L3 cache:": "66 MiB (2 instances)", + "Stepping:": "4", + "L1d cache:": "1.5 MiB (48 instances)", + "L1i cache:": "1.5 MiB (48 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "46 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", + "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", + "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Core(s) per socket:": "24", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", + "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", + "Vulnerability Meltdown:": "Mitigation; PTI", + "Vulnerability Retbleed:": "Mitigation; IBRS", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", + "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": 0, + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0, + "num_wires": 4, + "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", + "witness_compiler": "c++" + }, + { + "circuit_id": "31036229-08f3-46ef-8764-d07d8457ae98", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-14T16:48:07.152Z", + "proving_scheme": "groth16", + "status": "Ready", + "compute_time": "P0DT00H00M07.755260S", + "compute_times": { + "total": 7.827754411846399, + "queued": 1.187311, + "clean_up": 0.0015825219452381134, + "create_cpp": 0.055841829627752304, + "file_setup": 0.24094245955348015, + "compile_cpp": 4.727515337988734, + "create_r1cs": 0.01797172799706459, + "save_results": 0.00582987442612648, + "get_r1cs_info": 0.0007000844925642014, + "groth16_setup": 1.3169381711632013, + "export_verification_key": 1.457504654303193, + "download_trusted_setup_file": 0.0024551209062337875 + }, + "file_sizes": { + "total": 225450, + "circuit": 213240, + "total_gb": 0.00022545, + "total_mb": 0.22545, + "circuit.dat": 6176, + "code.tar.gz": 529, + "circuit.zkey": 2580, + "verification_key": 2925 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tgz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", + "Model:": "85", + "CPU(s):": "96", + "BogoMIPS:": "5400.00", + "L2 cache:": "48 MiB (48 instances)", + "L3 cache:": "66 MiB (2 instances)", + "Stepping:": "4", + "L1d cache:": "1.5 MiB (48 instances)", + "L1i cache:": "1.5 MiB (48 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "46 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", + "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", + "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Core(s) per socket:": "24", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", + "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", + "Vulnerability Meltdown:": "Mitigation; PTI", + "Vulnerability Retbleed:": "Mitigation; IBRS", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", + "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": 0, + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0, + "num_wires": 4, + "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", + "witness_compiler": "c++" + }, + { + "circuit_id": "5903cf7f-4216-4310-9b75-38372f8c388c", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-14T16:48:07.102Z", + "proving_scheme": "groth16", + "status": "Ready", + "compute_time": "P0DT00H00M07.629072S", + "compute_times": { + "total": 7.706731498241425, + "queued": 10.220574, + "clean_up": 0.0017311125993728638, + "create_cpp": 0.04118148237466812, + "file_setup": 0.24070367217063904, + "compile_cpp": 4.700527288019657, + "create_r1cs": 0.018805818632245064, + "save_results": 0.00452309288084507, + "get_r1cs_info": 0.0006768498569726944, + "groth16_setup": 1.3046912178397179, + "export_verification_key": 1.3908804636448622, + "download_trusted_setup_file": 0.002524895593523979 + }, + "file_sizes": { + "total": 225424, + "circuit": 213240, + "total_gb": 0.000225424, + "total_mb": 0.225424, + "circuit.dat": 6176, + "code.tar.gz": 503, + "circuit.zkey": 2580, + "verification_key": 2925 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", + "Model:": "85", + "CPU(s):": "96", + "BogoMIPS:": "5400.00", + "L2 cache:": "48 MiB (48 instances)", + "L3 cache:": "66 MiB (2 instances)", + "Stepping:": "4", + "L1d cache:": "1.5 MiB (48 instances)", + "L1i cache:": "1.5 MiB (48 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "46 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", + "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", + "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Core(s) per socket:": "24", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", + "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", + "Vulnerability Meltdown:": "Mitigation; PTI", + "Vulnerability Retbleed:": "Mitigation; IBRS", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", + "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": 0, + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0, + "num_wires": 4, + "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", + "witness_compiler": "c++" + }, + { + "circuit_id": "b0c793e4-b515-45ac-8a72-cfae0ac922dc", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-14T16:44:24.312Z", + "proving_scheme": "groth16", + "status": "Ready", + "compute_time": "P0DT00H00M07.482628S", + "compute_times": { + "total": 7.561975220218301, + "queued": 1.222391, + "clean_up": 0.0017055310308933258, + "create_cpp": 0.05199330858886242, + "file_setup": 0.2374334391206503, + "compile_cpp": 4.667886773124337, + "create_r1cs": 0.01656530611217022, + "save_results": 0.006572069600224495, + "get_r1cs_info": 0.000768609344959259, + "groth16_setup": 1.3185450080782175, + "export_verification_key": 1.257138391956687, + "download_trusted_setup_file": 0.002875484526157379 + }, + "file_sizes": { + "total": 225418, + "circuit": 213240, + "total_gb": 0.000225418, + "total_mb": 0.225418, + "circuit.dat": 6176, + "code.tar.gz": 497, + "circuit.zkey": 2580, + "verification_key": 2925 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", + "Model:": "85", + "CPU(s):": "96", + "BogoMIPS:": "5400.00", + "L2 cache:": "48 MiB (48 instances)", + "L3 cache:": "66 MiB (2 instances)", + "Stepping:": "4", + "L1d cache:": "1.5 MiB (48 instances)", + "L1i cache:": "1.5 MiB (48 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "46 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", + "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", + "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Core(s) per socket:": "24", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", + "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", + "Vulnerability Meltdown:": "Mitigation; PTI", + "Vulnerability Retbleed:": "Mitigation; IBRS", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", + "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": 0, + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0, + "num_wires": 4, + "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", + "witness_compiler": "c++" + }, + { + "circuit_id": "8233556a-9137-4b8f-87d6-5bef601f558e", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-14T16:43:35.089Z", + "proving_scheme": "groth16", + "status": "Ready", + "compute_time": "P0DT00H00M07.884736S", + "compute_times": { + "total": 7.959419224411249, + "queued": 1.229535, + "clean_up": 0.0019381027668714523, + "create_cpp": 0.05442995950579643, + "file_setup": 0.24910731054842472, + "compile_cpp": 4.846454568207264, + "create_r1cs": 0.017506379634141922, + "save_results": 0.006044380366802216, + "get_r1cs_info": 0.0007475633174180984, + "groth16_setup": 1.4534037355333567, + "export_verification_key": 1.326861247420311, + "download_trusted_setup_file": 0.0024160724133253098 + }, + "file_sizes": { + "total": 225418, + "circuit": 213240, + "total_gb": 0.000225418, + "total_mb": 0.225418, + "circuit.dat": 6176, + "code.tar.gz": 497, + "circuit.zkey": 2580, + "verification_key": 2925 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", + "Model:": "85", + "CPU(s):": "96", + "BogoMIPS:": "5400.00", + "L2 cache:": "48 MiB (48 instances)", + "L3 cache:": "66 MiB (2 instances)", + "Stepping:": "4", + "L1d cache:": "1.5 MiB (48 instances)", + "L1i cache:": "1.5 MiB (48 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "46 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", + "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", + "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Core(s) per socket:": "24", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", + "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", + "Vulnerability Meltdown:": "Mitigation; PTI", + "Vulnerability Retbleed:": "Mitigation; IBRS", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", + "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": 0, + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0, + "num_wires": 4, + "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", + "witness_compiler": "c++" + }, + { + "circuit_id": "33b156af-e90c-45b9-8443-ef17bd8f6d97", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-14T16:42:30.035Z", + "proving_scheme": "groth16", + "status": "Ready", + "compute_time": "P0DT00H00M07.407008S", + "compute_times": { + "total": 7.483849035575986, + "queued": 1.19642, + "clean_up": 0.0023624245077371597, + "create_cpp": 0.04774354584515095, + "file_setup": 0.2423761673271656, + "compile_cpp": 4.617915507405996, + "create_r1cs": 0.010918818414211273, + "save_results": 0.005705619230866432, + "get_r1cs_info": 0.0007171276956796646, + "groth16_setup": 1.274269174784422, + "export_verification_key": 1.2790968604385853, + "download_trusted_setup_file": 0.0024453066289424896 + }, + "file_sizes": { + "total": 225418, + "circuit": 213240, + "total_gb": 0.000225418, + "total_mb": 0.225418, + "circuit.dat": 6176, + "code.tar.gz": 497, + "circuit.zkey": 2580, + "verification_key": 2925 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", + "Model:": "85", + "CPU(s):": "96", + "BogoMIPS:": "5400.00", + "L2 cache:": "48 MiB (48 instances)", + "L3 cache:": "66 MiB (2 instances)", + "Stepping:": "4", + "L1d cache:": "1.5 MiB (48 instances)", + "L1i cache:": "1.5 MiB (48 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "46 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", + "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", + "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Core(s) per socket:": "24", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", + "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", + "Vulnerability Meltdown:": "Mitigation; PTI", + "Vulnerability Retbleed:": "Mitigation; IBRS", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", + "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": 0, + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0, + "num_wires": 4, + "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", + "witness_compiler": "c++" + }, + { + "circuit_id": "fdfc7247-b167-4abd-91b0-6371c1577350", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-14T16:41:31.147Z", + "proving_scheme": "groth16", + "status": "Ready", + "compute_time": "P0DT00H00M07.445445S", + "compute_times": { + "total": 7.523868313059211, + "queued": 1.124406, + "clean_up": 0.0018163751810789108, + "create_cpp": 0.05418575927615166, + "file_setup": 0.2429647035896778, + "compile_cpp": 4.620327420532703, + "create_r1cs": 0.009532531723380089, + "save_results": 0.005571851506829262, + "get_r1cs_info": 0.0006300453096628189, + "groth16_setup": 1.2738962657749653, + "export_verification_key": 1.312037419527769, + "download_trusted_setup_file": 0.0024276338517665863 + }, + "file_sizes": { + "total": 225418, + "circuit": 213240, + "total_gb": 0.000225418, + "total_mb": 0.225418, + "circuit.dat": 6176, + "code.tar.gz": 497, + "circuit.zkey": 2580, + "verification_key": 2925 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", + "Model:": "85", + "CPU(s):": "96", + "BogoMIPS:": "5400.00", + "L2 cache:": "48 MiB (48 instances)", + "L3 cache:": "66 MiB (2 instances)", + "Stepping:": "4", + "L1d cache:": "1.5 MiB (48 instances)", + "L1i cache:": "1.5 MiB (48 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "46 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", + "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", + "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Core(s) per socket:": "24", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", + "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", + "Vulnerability Meltdown:": "Mitigation; PTI", + "Vulnerability Retbleed:": "Mitigation; IBRS", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", + "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": 0, + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0, + "num_wires": 4, + "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", + "witness_compiler": "c++" + }, + { + "circuit_id": "42522dc2-f82b-4520-967a-55e3e5dabc3c", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-14T16:41:15.809Z", + "proving_scheme": "groth16", + "status": "Ready", + "compute_time": "P0DT00H00M07.571921S", + "compute_times": { + "total": 7.650477720424533, + "queued": 1.111976, + "clean_up": 0.0017036069184541702, + "create_cpp": 0.05775970779359341, + "file_setup": 0.24369817227125168, + "compile_cpp": 4.567208100110292, + "create_r1cs": 0.010626023635268211, + "save_results": 0.005508618429303169, + "get_r1cs_info": 0.0007592644542455673, + "groth16_setup": 1.325358035042882, + "export_verification_key": 1.434918174520135, + "download_trusted_setup_file": 0.002489684149622917 + }, + "file_sizes": { + "total": 225418, + "circuit": 213240, + "total_gb": 0.000225418, + "total_mb": 0.225418, + "circuit.dat": 6176, + "code.tar.gz": 497, + "circuit.zkey": 2580, + "verification_key": 2925 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", + "Model:": "85", + "CPU(s):": "96", + "BogoMIPS:": "5400.00", + "L2 cache:": "48 MiB (48 instances)", + "L3 cache:": "66 MiB (2 instances)", + "Stepping:": "4", + "L1d cache:": "1.5 MiB (48 instances)", + "L1i cache:": "1.5 MiB (48 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "46 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", + "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", + "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Core(s) per socket:": "24", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", + "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", + "Vulnerability Meltdown:": "Mitigation; PTI", + "Vulnerability Retbleed:": "Mitigation; IBRS", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", + "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": 0, + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0, + "num_wires": 4, + "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", + "witness_compiler": "c++" + }, + { + "circuit_id": "ccb365dd-aaa7-4135-8451-8109549d2425", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-14T16:40:40.350Z", + "proving_scheme": "groth16", + "status": "Ready", + "compute_time": "P0DT00H00M07.478422S", + "compute_times": { + "total": 7.552844997495413, + "queued": 1.131376, + "clean_up": 0.0011975225061178207, + "create_cpp": 0.04975225776433945, + "file_setup": 0.23737302795052528, + "compile_cpp": 4.705687249079347, + "create_r1cs": 0.010492220520973206, + "save_results": 0.005188409239053726, + "get_r1cs_info": 0.000648990273475647, + "groth16_setup": 1.239344047382474, + "export_verification_key": 1.3002808820456266, + "download_trusted_setup_file": 0.0024506710469722748 + }, + "file_sizes": { + "total": 225418, + "circuit": 213240, + "total_gb": 0.000225418, + "total_mb": 0.225418, + "circuit.dat": 6176, + "code.tar.gz": 497, + "circuit.zkey": 2580, + "verification_key": 2925 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", + "Model:": "85", + "CPU(s):": "96", + "BogoMIPS:": "5400.00", + "L2 cache:": "48 MiB (48 instances)", + "L3 cache:": "66 MiB (2 instances)", + "Stepping:": "4", + "L1d cache:": "1.5 MiB (48 instances)", + "L1i cache:": "1.5 MiB (48 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "46 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", + "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", + "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Core(s) per socket:": "24", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", + "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", + "Vulnerability Meltdown:": "Mitigation; PTI", + "Vulnerability Retbleed:": "Mitigation; IBRS", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", + "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": 0, + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0, + "num_wires": 4, + "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", + "witness_compiler": "c++" + }, + { + "circuit_id": "cb341471-b6e3-493d-b1e8-b53ce3cd6a5b", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-14T16:39:10.262Z", + "proving_scheme": "groth16", + "status": "Ready", + "compute_time": "P0DT00H00M07.538228S", + "compute_times": { + "total": 7.6150872856378555, + "queued": 1.141062, + "clean_up": 0.0008311737328767776, + "create_cpp": 0.049604376778006554, + "file_setup": 0.2431975770741701, + "compile_cpp": 4.613074295222759, + "create_r1cs": 0.010859638452529907, + "save_results": 0.0043745823204517365, + "get_r1cs_info": 0.0006608162075281143, + "groth16_setup": 1.3494537398219109, + "export_verification_key": 1.3401750400662422, + "download_trusted_setup_file": 0.0024873558431863785 + }, + "file_sizes": { + "total": 225418, + "circuit": 213240, + "total_gb": 0.000225418, + "total_mb": 0.225418, + "circuit.dat": 6176, + "code.tar.gz": 497, + "circuit.zkey": 2580, + "verification_key": 2925 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", + "Model:": "85", + "CPU(s):": "96", + "BogoMIPS:": "5400.00", + "L2 cache:": "48 MiB (48 instances)", + "L3 cache:": "66 MiB (2 instances)", + "Stepping:": "4", + "L1d cache:": "1.5 MiB (48 instances)", + "L1i cache:": "1.5 MiB (48 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "46 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", + "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", + "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Core(s) per socket:": "24", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", + "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", + "Vulnerability Meltdown:": "Mitigation; PTI", + "Vulnerability Retbleed:": "Mitigation; IBRS", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", + "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": 0, + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0, + "num_wires": 4, + "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", + "witness_compiler": "c++" + }, + { + "circuit_id": "0dc923b0-4401-4293-a34b-d6c5580a0645", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-14T16:38:13.292Z", + "proving_scheme": "groth16", + "status": "Ready", + "compute_time": "P0DT00H00M07.395198S", + "compute_times": { + "total": 7.466056250035763, + "queued": 1.163961, + "clean_up": 0.0011384561657905579, + "create_cpp": 0.04686044529080391, + "file_setup": 0.24102316424250603, + "compile_cpp": 4.544771498069167, + "create_r1cs": 0.024224452674388885, + "save_results": 0.003494899719953537, + "get_r1cs_info": 0.0006983857601881027, + "groth16_setup": 1.3162990398705006, + "export_verification_key": 1.2855232805013657, + "download_trusted_setup_file": 0.0015111621469259262 + }, + "file_sizes": { + "total": 225418, + "circuit": 213240, + "total_gb": 0.000225418, + "total_mb": 0.225418, + "circuit.dat": 6176, + "code.tar.gz": 497, + "circuit.zkey": 2580, + "verification_key": 2925 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", + "Model:": "85", + "CPU(s):": "96", + "BogoMIPS:": "5400.00", + "L2 cache:": "48 MiB (48 instances)", + "L3 cache:": "66 MiB (2 instances)", + "Stepping:": "4", + "L1d cache:": "1.5 MiB (48 instances)", + "L1i cache:": "1.5 MiB (48 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "46 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", + "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", + "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Core(s) per socket:": "24", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", + "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", + "Vulnerability Meltdown:": "Mitigation; PTI", + "Vulnerability Retbleed:": "Mitigation; IBRS", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", + "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": 0, + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0, + "num_wires": 4, + "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", + "witness_compiler": "c++" + }, + { + "circuit_id": "326d7770-6645-42f7-8e1f-4bbf78603c2d", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-14T16:36:59.942Z", + "proving_scheme": "groth16", + "status": "Ready", + "compute_time": "P0DT00H00M07.493549S", + "compute_times": { + "total": 7.5688981637358665, + "queued": 1.122729, + "clean_up": 0.0016787368804216385, + "create_cpp": 0.04684302769601345, + "file_setup": 0.24815072491765022, + "compile_cpp": 4.597322579473257, + "create_r1cs": 0.01063484326004982, + "save_results": 0.006045779213309288, + "get_r1cs_info": 0.0006333775818347931, + "groth16_setup": 1.3306193556636572, + "export_verification_key": 1.3240374308079481, + "download_trusted_setup_file": 0.0024573486298322678 + }, + "file_sizes": { + "total": 225418, + "circuit": 213240, + "total_gb": 0.000225418, + "total_mb": 0.225418, + "circuit.dat": 6176, + "code.tar.gz": 497, + "circuit.zkey": 2580, + "verification_key": 2925 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", + "Model:": "85", + "CPU(s):": "96", + "BogoMIPS:": "5400.00", + "L2 cache:": "48 MiB (48 instances)", + "L3 cache:": "66 MiB (2 instances)", + "Stepping:": "4", + "L1d cache:": "1.5 MiB (48 instances)", + "L1i cache:": "1.5 MiB (48 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "46 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", + "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", + "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Core(s) per socket:": "24", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", + "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", + "Vulnerability Meltdown:": "Mitigation; PTI", + "Vulnerability Retbleed:": "Mitigation; IBRS", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", + "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": 0, + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0, + "num_wires": 4, + "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", + "witness_compiler": "c++" + }, + { + "circuit_id": "2e5c81e7-f594-4e07-b4f7-1886781181b1", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-14T16:36:29.172Z", + "proving_scheme": "groth16", + "status": "Ready", + "compute_time": "P0DT00H00M07.746103S", + "compute_times": { + "total": 7.818564524874091, + "queued": 1.135853, + "clean_up": 0.0016661174595355988, + "create_cpp": 0.04841892793774605, + "file_setup": 0.247941792011261, + "compile_cpp": 4.713706800714135, + "create_r1cs": 0.01695185899734497, + "save_results": 0.006999487057328224, + "get_r1cs_info": 0.0007085073739290237, + "groth16_setup": 1.3950544595718384, + "export_verification_key": 1.3842929042875767, + "download_trusted_setup_file": 0.0024377331137657166 + }, + "file_sizes": { + "total": 225418, + "circuit": 213240, + "total_gb": 0.000225418, + "total_mb": 0.225418, + "circuit.dat": 6176, + "code.tar.gz": 497, + "circuit.zkey": 2580, + "verification_key": 2925 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", + "Model:": "85", + "CPU(s):": "96", + "BogoMIPS:": "5400.00", + "L2 cache:": "48 MiB (48 instances)", + "L3 cache:": "66 MiB (2 instances)", + "Stepping:": "4", + "L1d cache:": "1.5 MiB (48 instances)", + "L1i cache:": "1.5 MiB (48 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "46 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", + "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", + "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Core(s) per socket:": "24", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", + "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", + "Vulnerability Meltdown:": "Mitigation; PTI", + "Vulnerability Retbleed:": "Mitigation; IBRS", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", + "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": 0, + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0, + "num_wires": 4, + "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", + "witness_compiler": "c++" + }, + { + "circuit_id": "4a85b21e-2567-4d75-8cf7-f7879d832acf", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-14T16:33:59.993Z", + "proving_scheme": "groth16", + "status": "Ready", + "compute_time": "P0DT00H00M07.627692S", + "compute_times": { + "total": 7.703156094998121, + "queued": 1.154377, + "clean_up": 0.0018535908311605453, + "create_cpp": 0.047643400728702545, + "file_setup": 0.2447856217622757, + "compile_cpp": 4.74752707220614, + "create_r1cs": 0.015797777101397514, + "save_results": 0.005216935649514198, + "get_r1cs_info": 0.0007510744035243988, + "groth16_setup": 1.3178835678845644, + "export_verification_key": 1.3187684249132872, + "download_trusted_setup_file": 0.002450980246067047 + }, + "file_sizes": { + "total": 225418, + "circuit": 213240, + "total_gb": 0.000225418, + "total_mb": 0.225418, + "circuit.dat": 6176, + "code.tar.gz": 497, + "circuit.zkey": 2580, + "verification_key": 2925 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", + "Model:": "85", + "CPU(s):": "96", + "BogoMIPS:": "5400.00", + "L2 cache:": "48 MiB (48 instances)", + "L3 cache:": "66 MiB (2 instances)", + "Stepping:": "4", + "L1d cache:": "1.5 MiB (48 instances)", + "L1i cache:": "1.5 MiB (48 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "46 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", + "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", + "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Core(s) per socket:": "24", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", + "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", + "Vulnerability Meltdown:": "Mitigation; PTI", + "Vulnerability Retbleed:": "Mitigation; IBRS", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", + "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": 0, + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0, + "num_wires": 4, + "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", + "witness_compiler": "c++" + }, + { + "circuit_id": "49969f00-5b6b-4e1b-ae54-3ebb821dde8b", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-14T16:33:38.587Z", + "proving_scheme": "groth16", + "status": "Ready", + "compute_time": "P0DT00H00M07.552651S", + "compute_times": { + "total": 7.624790228903294, + "queued": 1.115758, + "clean_up": 0.0017047524452209473, + "create_cpp": 0.04909936711192131, + "file_setup": 0.24133107624948025, + "compile_cpp": 4.7210179921239614, + "create_r1cs": 0.011723736301064491, + "save_results": 0.005721684545278549, + "get_r1cs_info": 0.00038177333772182465, + "groth16_setup": 1.2864660620689392, + "export_verification_key": 1.3059150949120522, + "download_trusted_setup_file": 0.0009307935833930969 + }, + "file_sizes": { + "total": 225418, + "circuit": 213240, + "total_gb": 0.000225418, + "total_mb": 0.225418, + "circuit.dat": 6176, + "code.tar.gz": 497, + "circuit.zkey": 2580, + "verification_key": 2925 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", + "Model:": "85", + "CPU(s):": "96", + "BogoMIPS:": "5400.00", + "L2 cache:": "48 MiB (48 instances)", + "L3 cache:": "66 MiB (2 instances)", + "Stepping:": "4", + "L1d cache:": "1.5 MiB (48 instances)", + "L1i cache:": "1.5 MiB (48 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "46 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", + "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", + "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Core(s) per socket:": "24", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", + "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", + "Vulnerability Meltdown:": "Mitigation; PTI", + "Vulnerability Retbleed:": "Mitigation; IBRS", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", + "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": 0, + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0, + "num_wires": 4, + "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", + "witness_compiler": "c++" + }, + { + "circuit_id": "4e1013e6-c530-4e8d-9755-f26a64b2d572", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-14T16:33:08.324Z", + "proving_scheme": "groth16", + "status": "Ready", + "compute_time": "P0DT00H00M07.724889S", + "compute_times": { + "total": 7.7971851993352175, + "queued": 1.116063, + "clean_up": 0.0017428696155548096, + "create_cpp": 0.05533359386026859, + "file_setup": 0.23893662728369236, + "compile_cpp": 4.91211068071425, + "create_r1cs": 0.017335472628474236, + "save_results": 0.005370132625102997, + "get_r1cs_info": 0.0007455870509147644, + "groth16_setup": 1.2513550594449043, + "export_verification_key": 1.3113222550600767, + "download_trusted_setup_file": 0.0024493057280778885 + }, + "file_sizes": { + "total": 225418, + "circuit": 213240, + "total_gb": 0.000225418, + "total_mb": 0.225418, + "circuit.dat": 6176, + "code.tar.gz": 497, + "circuit.zkey": 2580, + "verification_key": 2925 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", + "Model:": "85", + "CPU(s):": "96", + "BogoMIPS:": "5400.00", + "L2 cache:": "48 MiB (48 instances)", + "L3 cache:": "66 MiB (2 instances)", + "Stepping:": "4", + "L1d cache:": "1.5 MiB (48 instances)", + "L1i cache:": "1.5 MiB (48 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "46 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", + "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", + "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Core(s) per socket:": "24", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", + "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", + "Vulnerability Meltdown:": "Mitigation; PTI", + "Vulnerability Retbleed:": "Mitigation; IBRS", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", + "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": 0, + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0, + "num_wires": 4, + "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", + "witness_compiler": "c++" + }, + { + "circuit_id": "a2b170e4-edf9-4798-bb85-35245768207d", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-14T16:09:57.696Z", + "proving_scheme": "groth16", + "status": "Ready", + "compute_time": "P0DT00H00M07.679682S", + "compute_times": { + "total": 7.756731368601322, + "queued": 1.193863, + "clean_up": 0.0013168156147003174, + "create_cpp": 0.04220888577401638, + "file_setup": 0.24753136932849884, + "compile_cpp": 4.787212835624814, + "create_r1cs": 0.017687704414129257, + "save_results": 0.007237255573272705, + "get_r1cs_info": 0.000683177262544632, + "groth16_setup": 1.3392270132899284, + "export_verification_key": 1.3106779605150223, + "download_trusted_setup_file": 0.002470754086971283 + }, + "file_sizes": { + "total": 225418, + "circuit": 213240, + "total_gb": 0.000225418, + "total_mb": 0.225418, + "circuit.dat": 6176, + "code.tar.gz": 497, + "circuit.zkey": 2580, + "verification_key": 2925 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", + "Model:": "85", + "CPU(s):": "96", + "BogoMIPS:": "5400.00", + "L2 cache:": "48 MiB (48 instances)", + "L3 cache:": "66 MiB (2 instances)", + "Stepping:": "4", + "L1d cache:": "1.5 MiB (48 instances)", + "L1i cache:": "1.5 MiB (48 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "46 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", + "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", + "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Core(s) per socket:": "24", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", + "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", + "Vulnerability Meltdown:": "Mitigation; PTI", + "Vulnerability Retbleed:": "Mitigation; IBRS", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", + "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": 0, + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0, + "num_wires": 4, + "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", + "witness_compiler": "c++" + }, + { + "circuit_id": "4fba5244-d526-41a5-bf36-a34c17c25f9b", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-14T15:55:58.030Z", + "proving_scheme": "groth16", + "status": "Ready", + "compute_time": "P0DT00H00M07.665572S", + "compute_times": { + "total": 7.745568448677659, + "queued": 1.257926, + "clean_up": 0.0018980763852596283, + "create_cpp": 0.055884186178445816, + "file_setup": 0.26442782394587994, + "compile_cpp": 4.797283286228776, + "create_r1cs": 0.01778632216155529, + "save_results": 0.005175711587071419, + "get_r1cs_info": 0.0007982272654771805, + "groth16_setup": 1.322161003947258, + "export_verification_key": 1.2772313170135021, + "download_trusted_setup_file": 0.0024321619421243668 + }, + "file_sizes": { + "total": 225418, + "circuit": 213240, + "total_gb": 0.000225418, + "total_mb": 0.225418, + "circuit.dat": 6176, + "code.tar.gz": 497, + "circuit.zkey": 2580, + "verification_key": 2925 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", + "Model:": "85", + "CPU(s):": "96", + "BogoMIPS:": "5400.00", + "L2 cache:": "48 MiB (48 instances)", + "L3 cache:": "66 MiB (2 instances)", + "Stepping:": "4", + "L1d cache:": "1.5 MiB (48 instances)", + "L1i cache:": "1.5 MiB (48 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "46 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", + "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", + "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Core(s) per socket:": "24", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", + "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", + "Vulnerability Meltdown:": "Mitigation; PTI", + "Vulnerability Retbleed:": "Mitigation; IBRS", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", + "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": 0, + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0, + "num_wires": 4, + "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", + "witness_compiler": "c++" + }, + { + "circuit_id": "60ad4516-8a32-43e1-916b-ab2680b0224a", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-14T15:52:58.481Z", + "proving_scheme": "groth16", + "status": "Ready", + "compute_time": "P0DT00H00M07.728836S", + "compute_times": { + "total": 7.801407495513558, + "queued": 1.158764, + "clean_up": 0.0015893597155809402, + "create_cpp": 0.05614244565367699, + "file_setup": 0.25334477610886097, + "compile_cpp": 4.813857762143016, + "create_r1cs": 0.012846684083342552, + "save_results": 0.004946554079651833, + "get_r1cs_info": 0.000693419948220253, + "groth16_setup": 1.3405254911631346, + "export_verification_key": 1.3146384991705418, + "download_trusted_setup_file": 0.0024357400834560394 + }, + "file_sizes": { + "total": 225418, + "circuit": 213240, + "total_gb": 0.000225418, + "total_mb": 0.225418, + "circuit.dat": 6176, + "code.tar.gz": 497, + "circuit.zkey": 2580, + "verification_key": 2925 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", + "Model:": "85", + "CPU(s):": "96", + "BogoMIPS:": "5400.00", + "L2 cache:": "48 MiB (48 instances)", + "L3 cache:": "66 MiB (2 instances)", + "Stepping:": "4", + "L1d cache:": "1.5 MiB (48 instances)", + "L1i cache:": "1.5 MiB (48 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "46 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", + "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", + "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Core(s) per socket:": "24", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", + "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", + "Vulnerability Meltdown:": "Mitigation; PTI", + "Vulnerability Retbleed:": "Mitigation; IBRS", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", + "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": 0, + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0, + "num_wires": 4, + "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", + "witness_compiler": "c++" + }, + { + "circuit_id": "7b802406-de93-4b76-8a09-11511e22bfa4", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-14T15:49:20.630Z", + "proving_scheme": "groth16", + "status": "Ready", + "compute_time": "P0DT00H00M07.696878S", + "compute_times": { + "total": 7.7695643454790115, + "queued": 1.208482, + "clean_up": 0.001626061275601387, + "create_cpp": 0.047227565199136734, + "file_setup": 0.26737155206501484, + "compile_cpp": 4.872535202652216, + "create_r1cs": 0.01879102736711502, + "save_results": 0.005725011229515076, + "get_r1cs_info": 0.0006924495100975037, + "groth16_setup": 1.232976334169507, + "export_verification_key": 1.3196605183184147, + "download_trusted_setup_file": 0.0024542957544326782 + }, + "file_sizes": { + "total": 225418, + "circuit": 213240, + "total_gb": 0.000225418, + "total_mb": 0.225418, + "circuit.dat": 6176, + "code.tar.gz": 497, + "circuit.zkey": 2580, + "verification_key": 2925 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", + "Model:": "85", + "CPU(s):": "96", + "BogoMIPS:": "5400.00", + "L2 cache:": "48 MiB (48 instances)", + "L3 cache:": "66 MiB (2 instances)", + "Stepping:": "4", + "L1d cache:": "1.5 MiB (48 instances)", + "L1i cache:": "1.5 MiB (48 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "46 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", + "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", + "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Core(s) per socket:": "24", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", + "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", + "Vulnerability Meltdown:": "Mitigation; PTI", + "Vulnerability Retbleed:": "Mitigation; IBRS", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", + "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": 0, + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0, + "num_wires": 4, + "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", + "witness_compiler": "c++" + }, + { + "circuit_id": "ff3d54cb-7235-405e-a9e3-be957dc4c587", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-14T15:49:00.734Z", + "proving_scheme": "groth16", + "status": "Ready", + "compute_time": "P0DT00H00M07.630205S", + "compute_times": { + "total": 7.71001566760242, + "queued": 1.114729, + "clean_up": 0.0020035244524478912, + "create_cpp": 0.053196635097265244, + "file_setup": 0.2405914142727852, + "compile_cpp": 4.621033746749163, + "create_r1cs": 0.03503704071044922, + "save_results": 0.005230717360973358, + "get_r1cs_info": 0.0007014013826847076, + "groth16_setup": 1.402680803090334, + "export_verification_key": 1.3465964272618294, + "download_trusted_setup_file": 0.0024281106889247894 + }, + "file_sizes": { + "total": 225418, + "circuit": 213240, + "total_gb": 0.000225418, + "total_mb": 0.225418, + "circuit.dat": 6176, + "code.tar.gz": 497, + "circuit.zkey": 2580, + "verification_key": 2925 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", + "Model:": "85", + "CPU(s):": "96", + "BogoMIPS:": "5400.00", + "L2 cache:": "48 MiB (48 instances)", + "L3 cache:": "66 MiB (2 instances)", + "Stepping:": "4", + "L1d cache:": "1.5 MiB (48 instances)", + "L1i cache:": "1.5 MiB (48 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "46 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", + "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", + "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Core(s) per socket:": "24", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", + "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", + "Vulnerability Meltdown:": "Mitigation; PTI", + "Vulnerability Retbleed:": "Mitigation; IBRS", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", + "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": 0, + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0, + "num_wires": 4, + "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", + "witness_compiler": "c++" + }, + { + "circuit_id": "90f970fc-7021-49fe-80eb-4aaae78d684e", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-14T15:47:58.175Z", + "proving_scheme": "groth16", + "status": "Ready", + "compute_time": "P0DT00H00M07.246888S", + "compute_times": { + "total": 7.320567287504673, + "queued": 1.199892, + "clean_up": 0.0018009450286626816, + "create_cpp": 0.046688828617334366, + "file_setup": 0.23241388611495495, + "compile_cpp": 4.509111732244492, + "create_r1cs": 0.010652711614966393, + "save_results": 0.0053970906883478165, + "get_r1cs_info": 0.0007533896714448929, + "groth16_setup": 1.233302304521203, + "export_verification_key": 1.2775605637580156, + "download_trusted_setup_file": 0.002413202077150345 + }, + "file_sizes": { + "total": 225418, + "circuit": 213240, + "total_gb": 0.000225418, + "total_mb": 0.225418, + "circuit.dat": 6176, + "code.tar.gz": 497, + "circuit.zkey": 2580, + "verification_key": 2925 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", + "Model:": "85", + "CPU(s):": "96", + "BogoMIPS:": "5400.00", + "L2 cache:": "48 MiB (48 instances)", + "L3 cache:": "66 MiB (2 instances)", + "Stepping:": "4", + "L1d cache:": "1.5 MiB (48 instances)", + "L1i cache:": "1.5 MiB (48 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "46 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", + "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", + "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Core(s) per socket:": "24", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", + "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", + "Vulnerability Meltdown:": "Mitigation; PTI", + "Vulnerability Retbleed:": "Mitigation; IBRS", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", + "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": 0, + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0, + "num_wires": 4, + "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", + "witness_compiler": "c++" + }, + { + "circuit_id": "925640ea-fa79-4730-ae82-8add47e913cb", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-14T15:47:41.292Z", + "proving_scheme": "groth16", + "status": "Ready", + "compute_time": "P0DT00H00M07.486909S", + "compute_times": { + "total": 7.5634617283940315, + "queued": 1.050597, + "clean_up": 0.0016485508531332016, + "create_cpp": 0.05515584722161293, + "file_setup": 0.23679853416979313, + "compile_cpp": 4.659947486594319, + "create_r1cs": 0.017400609329342842, + "save_results": 0.005805689841508865, + "get_r1cs_info": 0.0006781201809644699, + "groth16_setup": 1.2767266910523176, + "export_verification_key": 1.306356867775321, + "download_trusted_setup_file": 0.0024945326149463654 + }, + "file_sizes": { + "total": 225418, + "circuit": 213240, + "total_gb": 0.000225418, + "total_mb": 0.225418, + "circuit.dat": 6176, + "code.tar.gz": 497, + "circuit.zkey": 2580, + "verification_key": 2925 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", + "Model:": "85", + "CPU(s):": "96", + "BogoMIPS:": "5400.00", + "L2 cache:": "48 MiB (48 instances)", + "L3 cache:": "66 MiB (2 instances)", + "Stepping:": "4", + "L1d cache:": "1.5 MiB (48 instances)", + "L1i cache:": "1.5 MiB (48 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "46 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", + "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", + "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Core(s) per socket:": "24", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", + "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", + "Vulnerability Meltdown:": "Mitigation; PTI", + "Vulnerability Retbleed:": "Mitigation; IBRS", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", + "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": 0, + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0, + "num_wires": 4, + "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", + "witness_compiler": "c++" + }, + { + "circuit_id": "a5b16192-6898-41e6-bfb5-b73a50b8ebbe", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-14T15:45:51.911Z", + "proving_scheme": "groth16", + "status": "Ready", + "compute_time": "P0DT00H00M07.977553S", + "compute_times": { + "total": 8.051811749115586, + "queued": 1.228243, + "clean_up": 0.0016383752226829529, + "create_cpp": 0.04780636169016361, + "file_setup": 0.23954333923757076, + "compile_cpp": 5.166752548888326, + "create_r1cs": 0.018863901495933533, + "save_results": 0.00531991571187973, + "get_r1cs_info": 0.0004027280956506729, + "groth16_setup": 1.2763246074318886, + "export_verification_key": 1.293736344203353, + "download_trusted_setup_file": 0.0010492932051420212 + }, + "file_sizes": { + "total": 225418, + "circuit": 213240, + "total_gb": 0.000225418, + "total_mb": 0.225418, + "circuit.dat": 6176, + "code.tar.gz": 497, + "circuit.zkey": 2580, + "verification_key": 2925 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", + "Model:": "85", + "CPU(s):": "96", + "BogoMIPS:": "5400.00", + "L2 cache:": "48 MiB (48 instances)", + "L3 cache:": "66 MiB (2 instances)", + "Stepping:": "4", + "L1d cache:": "1.5 MiB (48 instances)", + "L1i cache:": "1.5 MiB (48 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "46 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", + "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", + "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Core(s) per socket:": "24", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", + "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", + "Vulnerability Meltdown:": "Mitigation; PTI", + "Vulnerability Retbleed:": "Mitigation; IBRS", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", + "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": 0, + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0, + "num_wires": 4, + "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", + "witness_compiler": "c++" + }, + { + "circuit_id": "68adc5ea-f06c-4d28-ac34-b3077b759a9c", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-14T15:43:16.141Z", + "proving_scheme": "groth16", + "status": "Ready", + "compute_time": "P0DT00H00M07.564382S", + "compute_times": { + "total": 7.62931395880878, + "queued": 1.225967, + "clean_up": 0.0016656853258609772, + "create_cpp": 0.04816170781850815, + "file_setup": 0.22820086777210236, + "compile_cpp": 4.6605421509593725, + "create_r1cs": 0.018833832815289497, + "save_results": 0.006733657792210579, + "get_r1cs_info": 0.0006740186363458633, + "groth16_setup": 1.2996833566576242, + "export_verification_key": 1.3620503433048725, + "download_trusted_setup_file": 0.002435106784105301 + }, + "file_sizes": { + "total": 225418, + "circuit": 213240, + "total_gb": 0.000225418, + "total_mb": 0.225418, + "circuit.dat": 6176, + "code.tar.gz": 497, + "circuit.zkey": 2580, + "verification_key": 2925 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", + "Model:": "85", + "CPU(s):": "96", + "BogoMIPS:": "5400.00", + "L2 cache:": "48 MiB (48 instances)", + "L3 cache:": "66 MiB (2 instances)", + "Stepping:": "4", + "L1d cache:": "1.5 MiB (48 instances)", + "L1i cache:": "1.5 MiB (48 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "46 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", + "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", + "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Core(s) per socket:": "24", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", + "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", + "Vulnerability Meltdown:": "Mitigation; PTI", + "Vulnerability Retbleed:": "Mitigation; IBRS", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", + "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": 0, + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0, + "num_wires": 4, + "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", + "witness_compiler": "c++" + }, + { + "circuit_id": "6f3bad22-1634-46d7-886e-832cba917fec", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-14T15:39:36.584Z", + "proving_scheme": "groth16", + "status": "Ready", + "compute_time": "P0DT00H00M07.664941S", + "compute_times": { + "total": 7.740619659423828, + "queued": 1.1192, + "clean_up": 0.0017648059874773026, + "create_cpp": 0.04447110556066036, + "file_setup": 0.24230228178203106, + "compile_cpp": 4.694819539785385, + "create_r1cs": 0.016316721215844154, + "save_results": 0.005714010447263718, + "get_r1cs_info": 0.0007064640522003174, + "groth16_setup": 1.4219826646149158, + "export_verification_key": 1.309614883735776, + "download_trusted_setup_file": 0.002441825345158577 + }, + "file_sizes": { + "total": 225418, + "circuit": 213240, + "total_gb": 0.000225418, + "total_mb": 0.225418, + "circuit.dat": 6176, + "code.tar.gz": 497, + "circuit.zkey": 2580, + "verification_key": 2925 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", + "Model:": "85", + "CPU(s):": "96", + "BogoMIPS:": "5400.00", + "L2 cache:": "48 MiB (48 instances)", + "L3 cache:": "66 MiB (2 instances)", + "Stepping:": "4", + "L1d cache:": "1.5 MiB (48 instances)", + "L1i cache:": "1.5 MiB (48 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "46 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", + "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", + "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Core(s) per socket:": "24", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", + "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", + "Vulnerability Meltdown:": "Mitigation; PTI", + "Vulnerability Retbleed:": "Mitigation; IBRS", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", + "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": 0, + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0, + "num_wires": 4, + "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", + "witness_compiler": "c++" + }, + { + "circuit_id": "d26ab648-29b6-43e8-aacf-40e14dfa4ed1", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-14T15:39:12.911Z", + "proving_scheme": "groth16", + "status": "Ready", + "compute_time": "P0DT00H00M07.596027S", + "compute_times": { + "total": 7.671294875442982, + "queued": 1.147463, + "clean_up": 0.0013887789100408554, + "create_cpp": 0.05159107968211174, + "file_setup": 0.23307767510414124, + "compile_cpp": 4.7507233787328005, + "create_r1cs": 0.01823563687503338, + "save_results": 0.005490930750966072, + "get_r1cs_info": 0.0010182727128267288, + "groth16_setup": 1.3135271780192852, + "export_verification_key": 1.2921632956713438, + "download_trusted_setup_file": 0.003589954227209091 + }, + "file_sizes": { + "total": 225418, + "circuit": 213240, + "total_gb": 0.000225418, + "total_mb": 0.225418, + "circuit.dat": 6176, + "code.tar.gz": 497, + "circuit.zkey": 2580, + "verification_key": 2925 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", + "Model:": "85", + "CPU(s):": "96", + "BogoMIPS:": "5400.00", + "L2 cache:": "48 MiB (48 instances)", + "L3 cache:": "66 MiB (2 instances)", + "Stepping:": "4", + "L1d cache:": "1.5 MiB (48 instances)", + "L1i cache:": "1.5 MiB (48 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "46 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", + "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", + "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Core(s) per socket:": "24", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", + "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", + "Vulnerability Meltdown:": "Mitigation; PTI", + "Vulnerability Retbleed:": "Mitigation; IBRS", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", + "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": 0, + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0, + "num_wires": 4, + "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", + "witness_compiler": "c++" + }, + { + "circuit_id": "d3a3e7a5-5b0b-459c-81cf-ae43938aa3c3", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-14T15:38:01.245Z", + "proving_scheme": "groth16", + "status": "Ready", + "compute_time": "P0DT00H00M07.820008S", + "compute_times": { + "total": 7.897290702909231, + "queued": 1.170189, + "clean_up": 0.0018852725625038147, + "create_cpp": 0.053761351853609085, + "file_setup": 0.24285616353154182, + "compile_cpp": 4.875218540430069, + "create_r1cs": 0.017158547416329384, + "save_results": 0.006690884009003639, + "get_r1cs_info": 0.0008476302027702332, + "groth16_setup": 1.337174404412508, + "export_verification_key": 1.3581416513770819, + "download_trusted_setup_file": 0.00307416170835495 + }, + "file_sizes": { + "total": 225418, + "circuit": 213240, + "total_gb": 0.000225418, + "total_mb": 0.225418, + "circuit.dat": 6176, + "code.tar.gz": 497, + "circuit.zkey": 2580, + "verification_key": 2925 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", + "Model:": "85", + "CPU(s):": "96", + "BogoMIPS:": "5400.00", + "L2 cache:": "48 MiB (48 instances)", + "L3 cache:": "66 MiB (2 instances)", + "Stepping:": "4", + "L1d cache:": "1.5 MiB (48 instances)", + "L1i cache:": "1.5 MiB (48 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "46 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", + "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", + "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Core(s) per socket:": "24", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", + "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", + "Vulnerability Meltdown:": "Mitigation; PTI", + "Vulnerability Retbleed:": "Mitigation; IBRS", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", + "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": 0, + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0, + "num_wires": 4, + "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", + "witness_compiler": "c++" + }, + { + "circuit_id": "327c28d6-d905-40a9-aa5e-910432b8c457", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-14T15:36:34.772Z", + "proving_scheme": "groth16", + "status": "Ready", + "compute_time": "P0DT00H00M07.386210S", + "compute_times": { + "total": 7.46240858733654, + "queued": 20.421796, + "clean_up": 0.0016153063625097275, + "create_cpp": 0.05553690902888775, + "file_setup": 0.2416877392679453, + "compile_cpp": 4.540888287127018, + "create_r1cs": 0.017148081213235855, + "save_results": 0.005492938682436943, + "get_r1cs_info": 0.0007535982877016068, + "groth16_setup": 1.2554643210023642, + "export_verification_key": 1.3404564801603556, + "download_trusted_setup_file": 0.002688312903046608 + }, + "file_sizes": { + "total": 225418, + "circuit": 213240, + "total_gb": 0.000225418, + "total_mb": 0.225418, + "circuit.dat": 6176, + "code.tar.gz": 497, + "circuit.zkey": 2580, + "verification_key": 2925 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", + "Model:": "85", + "CPU(s):": "96", + "BogoMIPS:": "5400.00", + "L2 cache:": "48 MiB (48 instances)", + "L3 cache:": "66 MiB (2 instances)", + "Stepping:": "4", + "L1d cache:": "1.5 MiB (48 instances)", + "L1i cache:": "1.5 MiB (48 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "46 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", + "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", + "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Core(s) per socket:": "24", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", + "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", + "Vulnerability Meltdown:": "Mitigation; PTI", + "Vulnerability Retbleed:": "Mitigation; IBRS", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", + "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": 0, + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0, + "num_wires": 4, + "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", + "witness_compiler": "c++" + }, + { + "circuit_id": "52a77185-bd08-4e1d-a040-068a7be5a72b", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-14T15:24:06.062Z", + "proving_scheme": "groth16", + "status": "Ready", + "compute_time": "P0DT00H00M07.640178S", + "compute_times": { + "total": 7.714155467227101, + "queued": 1.185042, + "clean_up": 0.0016178041696548462, + "create_cpp": 0.04732489213347435, + "file_setup": 0.24032527580857277, + "compile_cpp": 4.717082438990474, + "create_r1cs": 0.016816765069961548, + "save_results": 0.0056424327194690704, + "get_r1cs_info": 0.0007807277143001556, + "groth16_setup": 1.3203076552599669, + "export_verification_key": 1.36131626740098, + "download_trusted_setup_file": 0.00248648039996624 + }, + "file_sizes": { + "total": 225418, + "circuit": 213240, + "total_gb": 0.000225418, + "total_mb": 0.225418, + "circuit.dat": 6176, + "code.tar.gz": 497, + "circuit.zkey": 2580, + "verification_key": 2925 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", + "Model:": "85", + "CPU(s):": "96", + "BogoMIPS:": "5400.00", + "L2 cache:": "48 MiB (48 instances)", + "L3 cache:": "66 MiB (2 instances)", + "Stepping:": "4", + "L1d cache:": "1.5 MiB (48 instances)", + "L1i cache:": "1.5 MiB (48 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "46 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", + "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", + "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Core(s) per socket:": "24", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", + "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", + "Vulnerability Meltdown:": "Mitigation; PTI", + "Vulnerability Retbleed:": "Mitigation; IBRS", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", + "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": 0, + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0, + "num_wires": 4, + "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", + "witness_compiler": "c++" + }, + { + "circuit_id": "92b6ffef-2d23-4ea4-9c17-25449acf9f6d", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-14T15:12:25.903Z", + "proving_scheme": "groth16", + "status": "Ready", + "compute_time": "P0DT00H00M07.459452S", + "compute_times": { + "total": 7.538122421130538, + "queued": 3.182029, + "clean_up": 0.0019169263541698456, + "create_cpp": 0.05147097259759903, + "file_setup": 0.23234434984624386, + "compile_cpp": 4.633158722892404, + "create_r1cs": 0.015974245965480804, + "save_results": 0.0055649615824222565, + "get_r1cs_info": 0.0007752608507871628, + "groth16_setup": 1.2927527874708176, + "export_verification_key": 1.3012404087930918, + "download_trusted_setup_file": 0.002442318946123123 + }, + "file_sizes": { + "total": 225418, + "circuit": 213240, + "total_gb": 0.000225418, + "total_mb": 0.225418, + "circuit.dat": 6176, + "code.tar.gz": 497, + "circuit.zkey": 2580, + "verification_key": 2925 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", + "Model:": "85", + "CPU(s):": "96", + "BogoMIPS:": "5400.00", + "L2 cache:": "48 MiB (48 instances)", + "L3 cache:": "66 MiB (2 instances)", + "Stepping:": "4", + "L1d cache:": "1.5 MiB (48 instances)", + "L1i cache:": "1.5 MiB (48 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "46 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", + "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", + "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Core(s) per socket:": "24", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", + "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", + "Vulnerability Meltdown:": "Mitigation; PTI", + "Vulnerability Retbleed:": "Mitigation; IBRS", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", + "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": 0, + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0, + "num_wires": 4, + "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", + "witness_compiler": "c++" + }, + { + "circuit_id": "f5bf0783-4e8e-4d3a-8afb-3756d6630ed6", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-14T02:17:06.356Z", + "proving_scheme": "groth16", + "status": "Ready", + "compute_time": "P0DT00H00M07.767214S", + "compute_times": { + "total": 7.844439402222633, + "queued": 22.255549, + "clean_up": 0.001671966165304184, + "create_cpp": 0.04819011874496937, + "file_setup": 0.23547505028545856, + "compile_cpp": 4.71245345659554, + "create_r1cs": 0.017498936504125595, + "save_results": 0.005684111267328262, + "get_r1cs_info": 0.00042267516255378723, + "groth16_setup": 1.3792817536741495, + "export_verification_key": 1.4420029371976852, + "download_trusted_setup_file": 0.001202734187245369 + }, + "file_sizes": { + "total": 225424, + "circuit": 213240, + "total_gb": 0.000225424, + "total_mb": 0.225424, + "circuit.dat": 6176, + "code.tar.gz": 503, + "circuit.zkey": 2580, + "verification_key": 2925 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", + "Model:": "85", + "CPU(s):": "96", + "BogoMIPS:": "5400.00", + "L2 cache:": "48 MiB (48 instances)", + "L3 cache:": "66 MiB (2 instances)", + "Stepping:": "4", + "L1d cache:": "1.5 MiB (48 instances)", + "L1i cache:": "1.5 MiB (48 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "46 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", + "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", + "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Core(s) per socket:": "24", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", + "On-line CPU(s) list:": "0,1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41-49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89-95", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88", + "Vulnerability Meltdown:": "Mitigation; PTI", + "Vulnerability Retbleed:": "Mitigation; IBRS", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", + "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": 0, + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0, + "num_wires": 4, + "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", + "witness_compiler": "c++" + }, + { + "circuit_id": "895316d4-2a3d-4418-bb02-4d247bb31f42", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-14T02:17:06.305Z", + "proving_scheme": "groth16", + "status": "Ready", + "compute_time": "P0DT00H00M07.367716S", + "compute_times": { + "total": 7.445993509143591, + "queued": 19.4902, + "clean_up": 0.001679038628935814, + "create_cpp": 0.04941392503678799, + "file_setup": 0.2603658549487591, + "compile_cpp": 4.4457344226539135, + "create_r1cs": 0.015564171597361565, + "save_results": 0.005699107423424721, + "get_r1cs_info": 0.00044892914593219757, + "groth16_setup": 1.3399745263159275, + "export_verification_key": 1.3249822482466698, + "download_trusted_setup_file": 0.0015281010419130325 + }, + "file_sizes": { + "total": 225418, + "circuit": 213240, + "total_gb": 0.000225418, + "total_mb": 0.225418, + "circuit.dat": 6176, + "code.tar.gz": 497, + "circuit.zkey": 2580, + "verification_key": 2925 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", + "Model:": "85", + "CPU(s):": "96", + "BogoMIPS:": "5400.00", + "L2 cache:": "48 MiB (48 instances)", + "L3 cache:": "66 MiB (2 instances)", + "Stepping:": "4", + "L1d cache:": "1.5 MiB (48 instances)", + "L1i cache:": "1.5 MiB (48 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "46 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", + "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", + "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Core(s) per socket:": "24", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", + "On-line CPU(s) list:": "0,1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41-49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89-95", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88", + "Vulnerability Meltdown:": "Mitigation; PTI", + "Vulnerability Retbleed:": "Mitigation; IBRS", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", + "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": 0, + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0, + "num_wires": 4, + "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", + "witness_compiler": "c++" + }, + { + "circuit_id": "be9aeee2-67a1-40cc-b2a9-31c749baa91a", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-14T02:17:06.264Z", + "proving_scheme": "groth16", + "status": "Ready", + "compute_time": "P0DT00H00M07.440114S", + "compute_times": { + "total": 7.517095539718866, + "queued": 17.354408, + "clean_up": 0.0018942803144454956, + "create_cpp": 0.055966123938560486, + "file_setup": 0.23165968619287014, + "compile_cpp": 4.604835856705904, + "create_r1cs": 0.016073141247034073, + "save_results": 0.005840808153152466, + "get_r1cs_info": 0.0005646403878927231, + "groth16_setup": 1.3124119993299246, + "export_verification_key": 1.2851601000875235, + "download_trusted_setup_file": 0.002033783122897148 + }, + "file_sizes": { + "total": 225450, + "circuit": 213240, + "total_gb": 0.00022545, + "total_mb": 0.22545, + "circuit.dat": 6176, + "code.tar.gz": 529, + "circuit.zkey": 2580, + "verification_key": 2925 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tgz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", + "Model:": "85", + "CPU(s):": "96", + "BogoMIPS:": "5400.00", + "L2 cache:": "48 MiB (48 instances)", + "L3 cache:": "66 MiB (2 instances)", + "Stepping:": "4", + "L1d cache:": "1.5 MiB (48 instances)", + "L1i cache:": "1.5 MiB (48 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "46 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", + "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", + "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Core(s) per socket:": "24", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", + "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", + "Vulnerability Meltdown:": "Mitigation; PTI", + "Vulnerability Retbleed:": "Mitigation; IBRS", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", + "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": 0, + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0, + "num_wires": 4, + "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", + "witness_compiler": "c++" + }, + { + "circuit_id": "65fe2793-9973-4c6e-8802-d0788c536501", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-14T01:35:42.731Z", + "proving_scheme": "groth16", + "status": "Ready", + "compute_time": "P0DT00H00M07.704094S", + "compute_times": { + "total": 7.780933722853661, + "queued": 1.20041, + "clean_up": 0.0017544794827699661, + "create_cpp": 0.047739313915371895, + "file_setup": 0.25539655797183514, + "compile_cpp": 4.67063057795167, + "create_r1cs": 0.01837228797376156, + "save_results": 0.005115482956171036, + "get_r1cs_info": 0.0008046850562095642, + "groth16_setup": 1.3312513139098883, + "export_verification_key": 1.4467235822230577, + "download_trusted_setup_file": 0.0026854518800973892 + }, + "file_sizes": { + "total": 225424, + "circuit": 213240, + "total_gb": 0.000225424, + "total_mb": 0.225424, + "circuit.dat": 6176, + "code.tar.gz": 503, + "circuit.zkey": 2580, + "verification_key": 2925 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", + "Model:": "85", + "CPU(s):": "96", + "BogoMIPS:": "5400.00", + "L2 cache:": "48 MiB (48 instances)", + "L3 cache:": "66 MiB (2 instances)", + "Stepping:": "4", + "L1d cache:": "1.5 MiB (48 instances)", + "L1i cache:": "1.5 MiB (48 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "46 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", + "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", + "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Core(s) per socket:": "24", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", + "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", + "Vulnerability Meltdown:": "Mitigation; PTI", + "Vulnerability Retbleed:": "Mitigation; IBRS", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", + "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": 0, + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0, + "num_wires": 4, + "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", + "witness_compiler": "c++" + }, + { + "circuit_id": "ec20c2f1-63b4-453b-b631-042f1dace286", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-14T01:35:42.477Z", + "proving_scheme": "groth16", + "status": "Ready", + "compute_time": "P0DT00H00M07.539209S", + "compute_times": { + "total": 7.630237089470029, + "queued": 1.20364, + "clean_up": 0.0018465593457221985, + "create_cpp": 0.048426778987050056, + "file_setup": 0.28575040958821774, + "compile_cpp": 4.522350315004587, + "create_r1cs": 0.010585671290755272, + "save_results": 0.00592038594186306, + "get_r1cs_info": 0.000683952122926712, + "groth16_setup": 1.3668177835643291, + "export_verification_key": 1.3847495634108782, + "download_trusted_setup_file": 0.0025108084082603455 + }, + "file_sizes": { + "total": 225450, + "circuit": 213240, + "total_gb": 0.00022545, + "total_mb": 0.22545, + "circuit.dat": 6176, + "code.tar.gz": 529, + "circuit.zkey": 2580, + "verification_key": 2925 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tgz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", + "Model:": "85", + "CPU(s):": "96", + "BogoMIPS:": "5400.00", + "L2 cache:": "48 MiB (48 instances)", + "L3 cache:": "66 MiB (2 instances)", + "Stepping:": "4", + "L1d cache:": "1.5 MiB (48 instances)", + "L1i cache:": "1.5 MiB (48 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "46 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", + "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", + "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Core(s) per socket:": "24", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", + "On-line CPU(s) list:": "0,1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41-49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89-95", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88", + "Vulnerability Meltdown:": "Mitigation; PTI", + "Vulnerability Retbleed:": "Mitigation; IBRS", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", + "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": 0, + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0, + "num_wires": 4, + "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", + "witness_compiler": "c++" + }, + { + "circuit_id": "f550240d-ab41-46fc-8349-ef5dd2b6ae72", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-14T01:35:42.441Z", + "proving_scheme": "groth16", + "status": "Ready", + "compute_time": "P0DT00H00M07.547238S", + "compute_times": { + "total": 7.629827946424484, + "queued": 1.057625, + "clean_up": 0.0015633665025234222, + "create_cpp": 0.056376999244093895, + "file_setup": 0.2554791755974293, + "compile_cpp": 4.59183656424284, + "create_r1cs": 0.014426013454794884, + "save_results": 0.005605714395642281, + "get_r1cs_info": 0.0006720162928104401, + "groth16_setup": 1.3423564583063126, + "export_verification_key": 1.3587531484663486, + "download_trusted_setup_file": 0.002422267571091652 + }, + "file_sizes": { + "total": 225418, + "circuit": 213240, + "total_gb": 0.000225418, + "total_mb": 0.225418, + "circuit.dat": 6176, + "code.tar.gz": 497, + "circuit.zkey": 2580, + "verification_key": 2925 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", + "Model:": "85", + "CPU(s):": "96", + "BogoMIPS:": "5400.00", + "L2 cache:": "48 MiB (48 instances)", + "L3 cache:": "66 MiB (2 instances)", + "Stepping:": "4", + "L1d cache:": "1.5 MiB (48 instances)", + "L1i cache:": "1.5 MiB (48 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "46 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", + "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", + "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Core(s) per socket:": "24", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", + "On-line CPU(s) list:": "0,1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41-49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89-95", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88", + "Vulnerability Meltdown:": "Mitigation; PTI", + "Vulnerability Retbleed:": "Mitigation; IBRS", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", + "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": 0, + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0, + "num_wires": 4, + "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", + "witness_compiler": "c++" + }, + { + "circuit_id": "e385fc9a-6678-4436-a4d9-7b6207cdec1e", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-14T01:34:48.278Z", + "proving_scheme": "groth16", + "status": "Ready", + "compute_time": "P0DT00H00M07.602105S", + "compute_times": { + "total": 7.6787131037563086, + "queued": 28.269221, + "clean_up": 0.0008335374295711517, + "create_cpp": 0.05295123904943466, + "file_setup": 0.24620787054300308, + "compile_cpp": 4.666990481317043, + "create_r1cs": 0.017643820494413376, + "save_results": 0.006149968132376671, + "get_r1cs_info": 0.0006770137697458267, + "groth16_setup": 1.286754585802555, + "export_verification_key": 1.3974271193146706, + "download_trusted_setup_file": 0.0024820510298013687 + }, + "file_sizes": { + "total": 225418, + "circuit": 213240, + "total_gb": 0.000225418, + "total_mb": 0.225418, + "circuit.dat": 6176, + "code.tar.gz": 497, + "circuit.zkey": 2580, + "verification_key": 2925 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", + "Model:": "85", + "CPU(s):": "96", + "BogoMIPS:": "5400.00", + "L2 cache:": "48 MiB (48 instances)", + "L3 cache:": "66 MiB (2 instances)", + "Stepping:": "4", + "L1d cache:": "1.5 MiB (48 instances)", + "L1i cache:": "1.5 MiB (48 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "46 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", + "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", + "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Core(s) per socket:": "24", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", + "On-line CPU(s) list:": "0,1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41-49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89-95", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88", + "Vulnerability Meltdown:": "Mitigation; PTI", + "Vulnerability Retbleed:": "Mitigation; IBRS", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", + "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": 0, + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0, + "num_wires": 4, + "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", + "witness_compiler": "c++" + }, + { + "circuit_id": "c0a257a6-6595-4d8f-af76-3c72ccb8124c", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-14T01:34:47.881Z", + "proving_scheme": "groth16", + "status": "Ready", + "compute_time": "P0DT00H00M07.648258S", + "compute_times": { + "total": 7.727745875716209, + "queued": 23.412292, + "clean_up": 0.0017776917666196823, + "create_cpp": 0.0479858573526144, + "file_setup": 0.2476426586508751, + "compile_cpp": 4.7762017995119095, + "create_r1cs": 0.015666168183088303, + "save_results": 0.005719615146517754, + "get_r1cs_info": 0.0005191490054130554, + "groth16_setup": 1.3373233694583178, + "export_verification_key": 1.2932734712958336, + "download_trusted_setup_file": 0.0012765545397996902 + }, + "file_sizes": { + "total": 225424, + "circuit": 213240, + "total_gb": 0.000225424, + "total_mb": 0.225424, + "circuit.dat": 6176, + "code.tar.gz": 503, + "circuit.zkey": 2580, + "verification_key": 2925 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", + "Model:": "85", + "CPU(s):": "96", + "BogoMIPS:": "5400.00", + "L2 cache:": "48 MiB (48 instances)", + "L3 cache:": "66 MiB (2 instances)", + "Stepping:": "4", + "L1d cache:": "1.5 MiB (48 instances)", + "L1i cache:": "1.5 MiB (48 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "46 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", + "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", + "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Core(s) per socket:": "24", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", + "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", + "Vulnerability Meltdown:": "Mitigation; PTI", + "Vulnerability Retbleed:": "Mitigation; IBRS", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", + "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": 0, + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0, + "num_wires": 4, + "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", + "witness_compiler": "c++" + }, + { + "circuit_id": "17179e01-d7c4-4aea-aa1a-992f916bdee2", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-14T01:34:47.812Z", + "proving_scheme": "groth16", + "status": "Ready", + "compute_time": "P0DT00H00M07.917575S", + "compute_times": { + "total": 7.996331673115492, + "queued": 14.301244, + "clean_up": 0.001385565847158432, + "create_cpp": 0.05693238601088524, + "file_setup": 0.24305696785449982, + "compile_cpp": 4.886592995375395, + "create_r1cs": 0.016436800360679626, + "save_results": 0.0048583559691905975, + "get_r1cs_info": 0.0007434748113155365, + "groth16_setup": 1.4628947488963604, + "export_verification_key": 1.320095032453537, + "download_trusted_setup_file": 0.002690603956580162 + }, + "file_sizes": { + "total": 225450, + "circuit": 213240, + "total_gb": 0.00022545, + "total_mb": 0.22545, + "circuit.dat": 6176, + "code.tar.gz": 529, + "circuit.zkey": 2580, + "verification_key": 2925 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tgz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", + "Model:": "85", + "CPU(s):": "96", + "BogoMIPS:": "5400.00", + "L2 cache:": "48 MiB (48 instances)", + "L3 cache:": "66 MiB (2 instances)", + "Stepping:": "4", + "L1d cache:": "1.5 MiB (48 instances)", + "L1i cache:": "1.5 MiB (48 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "46 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", + "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", + "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Core(s) per socket:": "24", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", + "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", + "Vulnerability Meltdown:": "Mitigation; PTI", + "Vulnerability Retbleed:": "Mitigation; IBRS", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", + "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": 0, + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0, + "num_wires": 4, + "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", + "witness_compiler": "c++" + }, + { + "circuit_id": "97c1188b-940e-495c-b19a-95136ca94651", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-13T22:14:07.689Z", + "proving_scheme": "groth16", + "status": "Ready", + "compute_time": "P0DT00H00M07.579924S", + "compute_times": { + "total": 7.688783111050725, + "queued": 19.081671, + "clean_up": 0.0016204454004764557, + "create_cpp": 0.04679172858595848, + "file_setup": 0.29103851318359375, + "compile_cpp": 4.59976408816874, + "create_r1cs": 0.01832420565187931, + "save_results": 0.0057008713483810425, + "get_r1cs_info": 0.0007570423185825348, + "groth16_setup": 1.3156583420932293, + "export_verification_key": 1.4062066301703453, + "download_trusted_setup_file": 0.0025102216750383377 + }, + "file_sizes": { + "total": 225419, + "circuit": 213240, + "total_gb": 0.000225419, + "total_mb": 0.225419, + "circuit.dat": 6176, + "code.tar.gz": 498, + "circuit.zkey": 2580, + "verification_key": 2925 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", + "Model:": "85", + "CPU(s):": "96", + "BogoMIPS:": "5400.00", + "L2 cache:": "48 MiB (48 instances)", + "L3 cache:": "66 MiB (2 instances)", + "Stepping:": "4", + "L1d cache:": "1.5 MiB (48 instances)", + "L1i cache:": "1.5 MiB (48 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "46 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", + "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", + "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Core(s) per socket:": "24", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", + "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", + "Vulnerability Meltdown:": "Mitigation; PTI", + "Vulnerability Retbleed:": "Mitigation; IBRS", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", + "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": 0, + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0, + "num_wires": 4, + "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", + "witness_compiler": "c++" + }, + { + "circuit_id": "f171ba6b-3c6e-45ab-8978-cc81b2591fe2", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-13T21:56:00.914Z", + "proving_scheme": "groth16", + "status": "Ready", + "compute_time": "P0DT00H00M07.636625S", + "compute_times": { + "total": 7.707771621644497, + "queued": 18.700163, + "clean_up": 0.0018135719001293182, + "create_cpp": 0.04718630388379097, + "file_setup": 0.24202751740813255, + "compile_cpp": 4.60657000541687, + "create_r1cs": 0.01767110638320446, + "save_results": 0.006701948121190071, + "get_r1cs_info": 0.0008154623210430145, + "groth16_setup": 1.4166238810867071, + "export_verification_key": 1.3650648556649685, + "download_trusted_setup_file": 0.0026601888239383698 + }, + "file_sizes": { + "total": 225418, + "circuit": 213240, + "total_gb": 0.000225418, + "total_mb": 0.225418, + "circuit.dat": 6176, + "code.tar.gz": 497, + "circuit.zkey": 2580, + "verification_key": 2925 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", + "Model:": "85", + "CPU(s):": "96", + "BogoMIPS:": "5400.00", + "L2 cache:": "48 MiB (48 instances)", + "L3 cache:": "66 MiB (2 instances)", + "Stepping:": "4", + "L1d cache:": "1.5 MiB (48 instances)", + "L1i cache:": "1.5 MiB (48 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "46 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", + "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", + "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Core(s) per socket:": "24", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", + "On-line CPU(s) list:": "0,1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41-49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89-95", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88", + "Vulnerability Meltdown:": "Mitigation; PTI", + "Vulnerability Retbleed:": "Mitigation; IBRS", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", + "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": 0, + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0, + "num_wires": 4, + "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", + "witness_compiler": "c++" + }, + { + "circuit_id": "c5e01da7-48f8-41cc-b451-e3dadd91082f", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-13T21:56:00.471Z", + "proving_scheme": "groth16", + "status": "Ready", + "compute_time": "P0DT00H00M07.594002S", + "compute_times": { + "total": 7.674397809430957, + "queued": 17.546896, + "clean_up": 0.0017005838453769684, + "create_cpp": 0.04909280128777027, + "file_setup": 0.2650355380028486, + "compile_cpp": 4.535461347550154, + "create_r1cs": 0.01683916337788105, + "save_results": 0.005601212382316589, + "get_r1cs_info": 0.0004042927175760269, + "groth16_setup": 1.4130164682865143, + "export_verification_key": 1.3854157458990812, + "download_trusted_setup_file": 0.0012020468711853027 + }, + "file_sizes": { + "total": 225450, + "circuit": 213240, + "total_gb": 0.00022545, + "total_mb": 0.22545, + "circuit.dat": 6176, + "code.tar.gz": 529, + "circuit.zkey": 2580, + "verification_key": 2925 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tgz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", + "Model:": "85", + "CPU(s):": "96", + "BogoMIPS:": "5400.00", + "L2 cache:": "48 MiB (48 instances)", + "L3 cache:": "66 MiB (2 instances)", + "Stepping:": "4", + "L1d cache:": "1.5 MiB (48 instances)", + "L1i cache:": "1.5 MiB (48 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "46 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", + "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", + "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Core(s) per socket:": "24", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", + "On-line CPU(s) list:": "0,1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41-49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89-95", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88", + "Vulnerability Meltdown:": "Mitigation; PTI", + "Vulnerability Retbleed:": "Mitigation; IBRS", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", + "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": 0, + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0, + "num_wires": 4, + "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", + "witness_compiler": "c++" + }, + { + "circuit_id": "7b4d64f7-9eb1-43ea-88da-ee0c30a30dc0", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-13T21:56:00.454Z", + "proving_scheme": "groth16", + "status": "Ready", + "compute_time": "P0DT00H00M07.596317S", + "compute_times": { + "total": 7.6730455961078405, + "queued": 15.290082, + "clean_up": 0.001669473946094513, + "create_cpp": 0.05485839210450649, + "file_setup": 0.26459758542478085, + "compile_cpp": 4.7679917477071285, + "create_r1cs": 0.011294171214103699, + "save_results": 0.005053173750638962, + "get_r1cs_info": 0.000985546037554741, + "groth16_setup": 1.249212957918644, + "export_verification_key": 1.313942413777113, + "download_trusted_setup_file": 0.0028024110943078995 + }, + "file_sizes": { + "total": 225424, + "circuit": 213240, + "total_gb": 0.000225424, + "total_mb": 0.225424, + "circuit.dat": 6176, + "code.tar.gz": 503, + "circuit.zkey": 2580, + "verification_key": 2925 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", + "Model:": "85", + "CPU(s):": "96", + "BogoMIPS:": "5400.00", + "L2 cache:": "48 MiB (48 instances)", + "L3 cache:": "66 MiB (2 instances)", + "Stepping:": "4", + "L1d cache:": "1.5 MiB (48 instances)", + "L1i cache:": "1.5 MiB (48 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "46 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", + "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", + "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Core(s) per socket:": "24", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", + "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", + "Vulnerability Meltdown:": "Mitigation; PTI", + "Vulnerability Retbleed:": "Mitigation; IBRS", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", + "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": 0, + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0, + "num_wires": 4, + "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", + "witness_compiler": "c++" + }, + { + "circuit_id": "cdd9f705-bc15-43bb-949e-3717f72d942b", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-13T21:38:26.210Z", + "proving_scheme": "groth16", + "status": "Ready", + "compute_time": "P0DT00H00M07.677959S", + "compute_times": { + "total": 7.7533275205641985, + "queued": 18.19898, + "clean_up": 0.0016758590936660767, + "create_cpp": 0.04743916355073452, + "file_setup": 0.22825423069298267, + "compile_cpp": 4.849137723445892, + "create_r1cs": 0.017714163288474083, + "save_results": 0.005707431584596634, + "get_r1cs_info": 0.0005600731819868088, + "groth16_setup": 1.2724982649087906, + "export_verification_key": 1.3279783483594656, + "download_trusted_setup_file": 0.001912679523229599 + }, + "file_sizes": { + "total": 225450, + "circuit": 213240, + "total_gb": 0.00022545, + "total_mb": 0.22545, + "circuit.dat": 6176, + "code.tar.gz": 529, + "circuit.zkey": 2580, + "verification_key": 2925 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tgz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", + "Model:": "85", + "CPU(s):": "96", + "BogoMIPS:": "5400.00", + "L2 cache:": "48 MiB (48 instances)", + "L3 cache:": "66 MiB (2 instances)", + "Stepping:": "4", + "L1d cache:": "1.5 MiB (48 instances)", + "L1i cache:": "1.5 MiB (48 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "46 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", + "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", + "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Core(s) per socket:": "24", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", + "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", + "Vulnerability Meltdown:": "Mitigation; PTI", + "Vulnerability Retbleed:": "Mitigation; IBRS", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", + "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": 0, + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0, + "num_wires": 4, + "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", + "witness_compiler": "c++" + }, + { + "circuit_id": "4500e242-4807-4e58-8c61-51890f37a199", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-13T21:38:25.812Z", + "proving_scheme": "groth16", + "status": "Ready", + "compute_time": "P0DT00H00M07.569673S", + "compute_times": { + "total": 7.647986855357885, + "queued": 9.85944, + "clean_up": 0.0016725938767194748, + "create_cpp": 0.052060317248106, + "file_setup": 0.2424705233424902, + "compile_cpp": 4.573579087853432, + "create_r1cs": 0.016123183071613312, + "save_results": 0.005695518106222153, + "get_r1cs_info": 0.0006785281002521515, + "groth16_setup": 1.393597211688757, + "export_verification_key": 1.3591100927442312, + "download_trusted_setup_file": 0.002507256343960762 + }, + "file_sizes": { + "total": 225418, + "circuit": 213240, + "total_gb": 0.000225418, + "total_mb": 0.225418, + "circuit.dat": 6176, + "code.tar.gz": 497, + "circuit.zkey": 2580, + "verification_key": 2925 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", + "Model:": "85", + "CPU(s):": "96", + "BogoMIPS:": "5400.00", + "L2 cache:": "48 MiB (48 instances)", + "L3 cache:": "66 MiB (2 instances)", + "Stepping:": "4", + "L1d cache:": "1.5 MiB (48 instances)", + "L1i cache:": "1.5 MiB (48 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "46 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", + "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", + "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Core(s) per socket:": "24", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", + "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", + "Vulnerability Meltdown:": "Mitigation; PTI", + "Vulnerability Retbleed:": "Mitigation; IBRS", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", + "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": 0, + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0, + "num_wires": 4, + "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", + "witness_compiler": "c++" + }, + { + "circuit_id": "fcc7ffbc-e73d-442d-b2d7-d668f4ddb8f8", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-13T21:38:25.748Z", + "proving_scheme": "groth16", + "status": "Ready", + "compute_time": "P0DT00H00M07.519034S", + "compute_times": { + "total": 7.592722037807107, + "queued": 1.189058, + "clean_up": 0.0011803433299064636, + "create_cpp": 0.04865703918039799, + "file_setup": 0.23373384028673172, + "compile_cpp": 4.677073501050472, + "create_r1cs": 0.017674315720796585, + "save_results": 0.006435971707105637, + "get_r1cs_info": 0.0009603966027498245, + "groth16_setup": 1.317440578714013, + "export_verification_key": 1.2857090160250664, + "download_trusted_setup_file": 0.003442632034420967 + }, + "file_sizes": { + "total": 225424, + "circuit": 213240, + "total_gb": 0.000225424, + "total_mb": 0.225424, + "circuit.dat": 6176, + "code.tar.gz": 503, + "circuit.zkey": 2580, + "verification_key": 2925 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", + "Model:": "85", + "CPU(s):": "96", + "BogoMIPS:": "5400.00", + "L2 cache:": "48 MiB (48 instances)", + "L3 cache:": "66 MiB (2 instances)", + "Stepping:": "4", + "L1d cache:": "1.5 MiB (48 instances)", + "L1i cache:": "1.5 MiB (48 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "46 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", + "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", + "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Core(s) per socket:": "24", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", + "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", + "Vulnerability Meltdown:": "Mitigation; PTI", + "Vulnerability Retbleed:": "Mitigation; IBRS", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", + "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": 0, + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0, + "num_wires": 4, + "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", + "witness_compiler": "c++" + }, + { + "circuit_id": "148d24da-5577-4b99-829e-7a37ba6e1ce5", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-13T21:36:51.312Z", + "proving_scheme": "groth16", + "status": "Ready", + "compute_time": "P0DT00H00M07.909233S", + "compute_times": { + "total": 7.984679609537125, + "queued": 1.116588, + "clean_up": 0.0015947632491588593, + "create_cpp": 0.04699246771633625, + "file_setup": 0.2352718897163868, + "compile_cpp": 4.984196016564965, + "create_r1cs": 0.01876012235879898, + "save_results": 0.006016256287693977, + "get_r1cs_info": 0.0008815042674541473, + "groth16_setup": 1.314208835363388, + "export_verification_key": 1.37380082719028, + "download_trusted_setup_file": 0.00247078575193882 + }, + "file_sizes": { + "total": 225450, + "circuit": 213240, + "total_gb": 0.00022545, + "total_mb": 0.22545, + "circuit.dat": 6176, + "code.tar.gz": 529, + "circuit.zkey": 2580, + "verification_key": 2925 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tgz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", + "Model:": "85", + "CPU(s):": "96", + "BogoMIPS:": "5400.00", + "L2 cache:": "48 MiB (48 instances)", + "L3 cache:": "66 MiB (2 instances)", + "Stepping:": "4", + "L1d cache:": "1.5 MiB (48 instances)", + "L1i cache:": "1.5 MiB (48 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "46 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", + "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", + "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Core(s) per socket:": "24", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", + "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", + "Vulnerability Meltdown:": "Mitigation; PTI", + "Vulnerability Retbleed:": "Mitigation; IBRS", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", + "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": 0, + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0, + "num_wires": 4, + "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", + "witness_compiler": "c++" + }, + { + "circuit_id": "27f2cb36-588e-4279-a7db-f71bce8fd3ea", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-13T21:36:25.925Z", + "proving_scheme": "groth16", + "status": "Ready", + "compute_time": "P0DT00H00M07.632335S", + "compute_times": { + "total": 7.709978420287371, + "queued": 1.211208, + "clean_up": 0.0013846959918737411, + "create_cpp": 0.05810563452541828, + "file_setup": 0.24006458930671215, + "compile_cpp": 4.666282197460532, + "create_r1cs": 0.017120130360126495, + "save_results": 0.005914704874157906, + "get_r1cs_info": 0.000698436051607132, + "groth16_setup": 1.4062776304781437, + "export_verification_key": 1.3112494498491287, + "download_trusted_setup_file": 0.0024253148585557938 + }, + "file_sizes": { + "total": 225450, + "circuit": 213240, + "total_gb": 0.00022545, + "total_mb": 0.22545, + "circuit.dat": 6176, + "code.tar.gz": 529, + "circuit.zkey": 2580, + "verification_key": 2925 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tgz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", + "Model:": "85", + "CPU(s):": "96", + "BogoMIPS:": "5400.00", + "L2 cache:": "48 MiB (48 instances)", + "L3 cache:": "66 MiB (2 instances)", + "Stepping:": "4", + "L1d cache:": "1.5 MiB (48 instances)", + "L1i cache:": "1.5 MiB (48 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "46 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", + "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", + "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Core(s) per socket:": "24", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", + "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", + "Vulnerability Meltdown:": "Mitigation; PTI", + "Vulnerability Retbleed:": "Mitigation; IBRS", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", + "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": 0, + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0, + "num_wires": 4, + "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", + "witness_compiler": "c++" + }, + { + "circuit_id": "4b6bf726-5d2f-4e08-b9a6-fcd3ed910235", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-13T21:33:40.483Z", + "proving_scheme": "groth16", + "status": "Ready", + "compute_time": "P0DT00H00M07.706300S", + "compute_times": { + "total": 7.782388724386692, + "queued": 1.17897, + "clean_up": 0.0017512757331132889, + "create_cpp": 0.05008737929165363, + "file_setup": 0.2461202573031187, + "compile_cpp": 4.85274338722229, + "create_r1cs": 0.016811428591609, + "save_results": 0.00556546077132225, + "get_r1cs_info": 0.0006687957793474197, + "groth16_setup": 1.2804529499262571, + "export_verification_key": 1.3252677004784346, + "download_trusted_setup_file": 0.0024891532957553864 + }, + "file_sizes": { + "total": 225450, + "circuit": 213240, + "total_gb": 0.00022545, + "total_mb": 0.22545, + "circuit.dat": 6176, + "code.tar.gz": 529, + "circuit.zkey": 2580, + "verification_key": 2925 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tgz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", + "Model:": "85", + "CPU(s):": "96", + "BogoMIPS:": "5400.00", + "L2 cache:": "48 MiB (48 instances)", + "L3 cache:": "66 MiB (2 instances)", + "Stepping:": "4", + "L1d cache:": "1.5 MiB (48 instances)", + "L1i cache:": "1.5 MiB (48 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "46 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", + "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", + "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Core(s) per socket:": "24", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", + "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", + "Vulnerability Meltdown:": "Mitigation; PTI", + "Vulnerability Retbleed:": "Mitigation; IBRS", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", + "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": 0, + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0, + "num_wires": 4, + "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", + "witness_compiler": "c++" + }, + { + "circuit_id": "a2d7e23a-f3c6-49fa-8a02-e26e57348317", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-13T21:32:49.211Z", + "proving_scheme": "groth16", + "status": "Ready", + "compute_time": "P0DT00H00M07.470841S", + "compute_times": { + "total": 7.549792183563113, + "queued": 1.20048, + "clean_up": 0.0015842076390981674, + "create_cpp": 0.054698651656508446, + "file_setup": 0.24776330403983593, + "compile_cpp": 4.5193129144608974, + "create_r1cs": 0.010665420442819595, + "save_results": 0.005249980837106705, + "get_r1cs_info": 0.0006738137453794479, + "groth16_setup": 1.3397254347801208, + "export_verification_key": 1.3671844005584717, + "download_trusted_setup_file": 0.0024946723133325577 + }, + "file_sizes": { + "total": 225450, + "circuit": 213240, + "total_gb": 0.00022545, + "total_mb": 0.22545, + "circuit.dat": 6176, + "code.tar.gz": 529, + "circuit.zkey": 2580, + "verification_key": 2925 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tgz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", + "Model:": "85", + "CPU(s):": "96", + "BogoMIPS:": "5400.00", + "L2 cache:": "48 MiB (48 instances)", + "L3 cache:": "66 MiB (2 instances)", + "Stepping:": "4", + "L1d cache:": "1.5 MiB (48 instances)", + "L1i cache:": "1.5 MiB (48 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "46 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", + "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", + "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Core(s) per socket:": "24", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", + "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", + "Vulnerability Meltdown:": "Mitigation; PTI", + "Vulnerability Retbleed:": "Mitigation; IBRS", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", + "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": 0, + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0, + "num_wires": 4, + "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", + "witness_compiler": "c++" + }, + { + "circuit_id": "686340bc-d045-4229-ba44-87f651888ea1", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-13T21:31:13.485Z", + "proving_scheme": "groth16", + "status": "Ready", + "compute_time": "P0DT00H00M07.760798S", + "compute_times": { + "total": 7.836315272375941, + "queued": 1.203562, + "clean_up": 0.0016642827540636063, + "create_cpp": 0.05337905138731003, + "file_setup": 0.23328274302184582, + "compile_cpp": 4.752988923341036, + "create_r1cs": 0.010774670168757439, + "save_results": 0.0066010840237140656, + "get_r1cs_info": 0.0005256552249193192, + "groth16_setup": 1.285637954249978, + "export_verification_key": 1.489252969622612, + "download_trusted_setup_file": 0.0017739832401275635 + }, + "file_sizes": { + "total": 225450, + "circuit": 213240, + "total_gb": 0.00022545, + "total_mb": 0.22545, + "circuit.dat": 6176, + "code.tar.gz": 529, + "circuit.zkey": 2580, + "verification_key": 2925 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tgz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", + "Model:": "85", + "CPU(s):": "96", + "BogoMIPS:": "5400.00", + "L2 cache:": "48 MiB (48 instances)", + "L3 cache:": "66 MiB (2 instances)", + "Stepping:": "4", + "L1d cache:": "1.5 MiB (48 instances)", + "L1i cache:": "1.5 MiB (48 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "46 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", + "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", + "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Core(s) per socket:": "24", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", + "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", + "Vulnerability Meltdown:": "Mitigation; PTI", + "Vulnerability Retbleed:": "Mitigation; IBRS", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", + "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": 0, + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0, + "num_wires": 4, + "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", + "witness_compiler": "c++" + }, + { + "circuit_id": "218bfbe6-9e50-4702-a1e5-77a1c8f3d8ed", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-13T21:30:35.803Z", + "proving_scheme": "groth16", + "status": "Ready", + "compute_time": "P0DT00H00M07.456547S", + "compute_times": { + "total": 7.544302523136139, + "queued": 1.161186, + "clean_up": 0.0016966871917247772, + "create_cpp": 0.055683160200715065, + "file_setup": 0.2663968615233898, + "compile_cpp": 4.470876835286617, + "create_r1cs": 0.016854027286171913, + "save_results": 0.0059831272810697556, + "get_r1cs_info": 0.0006471928209066391, + "groth16_setup": 1.381587591022253, + "export_verification_key": 1.3415857050567865, + "download_trusted_setup_file": 0.0023956000804901123 + }, + "file_sizes": { + "total": 225450, + "circuit": 213240, + "total_gb": 0.00022545, + "total_mb": 0.22545, + "circuit.dat": 6176, + "code.tar.gz": 529, + "circuit.zkey": 2580, + "verification_key": 2925 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tgz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", + "Model:": "85", + "CPU(s):": "96", + "BogoMIPS:": "5400.00", + "L2 cache:": "48 MiB (48 instances)", + "L3 cache:": "66 MiB (2 instances)", + "Stepping:": "4", + "L1d cache:": "1.5 MiB (48 instances)", + "L1i cache:": "1.5 MiB (48 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "46 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", + "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", + "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Core(s) per socket:": "24", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", + "On-line CPU(s) list:": "0,1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41-49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89-95", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88", + "Vulnerability Meltdown:": "Mitigation; PTI", + "Vulnerability Retbleed:": "Mitigation; IBRS", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", + "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": 0, + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0, + "num_wires": 4, + "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", + "witness_compiler": "c++" + }, + { + "circuit_id": "17b13d5a-87b1-4923-a41b-8dfac41598e6", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-13T21:26:12.192Z", + "proving_scheme": "groth16", + "status": "Ready", + "compute_time": "P0DT00H00M07.534251S", + "compute_times": { + "total": 7.610159991309047, + "queued": 1.074114, + "clean_up": 0.0017370078712701797, + "create_cpp": 0.048391491174697876, + "file_setup": 0.29270106740295887, + "compile_cpp": 4.538070844486356, + "create_r1cs": 0.01847922056913376, + "save_results": 0.005488520488142967, + "get_r1cs_info": 0.000662611797451973, + "groth16_setup": 1.36158980242908, + "export_verification_key": 1.3403133414685726, + "download_trusted_setup_file": 0.0024301279336214066 + }, + "file_sizes": { + "total": 225419, + "circuit": 213240, + "total_gb": 0.000225419, + "total_mb": 0.225419, + "circuit.dat": 6176, + "code.tar.gz": 498, + "circuit.zkey": 2580, + "verification_key": 2925 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", + "Model:": "85", + "CPU(s):": "96", + "BogoMIPS:": "5400.00", + "L2 cache:": "48 MiB (48 instances)", + "L3 cache:": "66 MiB (2 instances)", + "Stepping:": "4", + "L1d cache:": "1.5 MiB (48 instances)", + "L1i cache:": "1.5 MiB (48 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "46 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", + "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", + "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Core(s) per socket:": "24", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", + "On-line CPU(s) list:": "0,1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41-49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89-95", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88", + "Vulnerability Meltdown:": "Mitigation; PTI", + "Vulnerability Retbleed:": "Mitigation; IBRS", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", + "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": 0, + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0, + "num_wires": 4, + "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", + "witness_compiler": "c++" + }, + { + "circuit_id": "f31735ba-10be-4e12-982d-4fef1e1ce0dd", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-13T21:25:45.617Z", + "proving_scheme": "groth16", + "status": "Ready", + "compute_time": "P0DT00H00M07.752871S", + "compute_times": { + "total": 7.832450011745095, + "queued": 8.522851, + "clean_up": 0.001605834811925888, + "create_cpp": 0.055504463613033295, + "file_setup": 0.26607356034219265, + "compile_cpp": 4.702925104647875, + "create_r1cs": 0.01827242784202099, + "save_results": 0.005086880177259445, + "get_r1cs_info": 0.0006781108677387238, + "groth16_setup": 1.3349650297313929, + "export_verification_key": 1.4444408621639013, + "download_trusted_setup_file": 0.0024520885199308395 + }, + "file_sizes": { + "total": 225419, + "circuit": 213240, + "total_gb": 0.000225419, + "total_mb": 0.225419, + "circuit.dat": 6176, + "code.tar.gz": 498, + "circuit.zkey": 2580, + "verification_key": 2925 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", + "Model:": "85", + "CPU(s):": "96", + "BogoMIPS:": "5400.00", + "L2 cache:": "48 MiB (48 instances)", + "L3 cache:": "66 MiB (2 instances)", + "Stepping:": "4", + "L1d cache:": "1.5 MiB (48 instances)", + "L1i cache:": "1.5 MiB (48 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "46 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", + "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", + "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Core(s) per socket:": "24", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", + "On-line CPU(s) list:": "0,1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41-49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89-95", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88", + "Vulnerability Meltdown:": "Mitigation; PTI", + "Vulnerability Retbleed:": "Mitigation; IBRS", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", + "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": 0, + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0, + "num_wires": 4, + "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", + "witness_compiler": "c++" + }, + { + "circuit_id": "aaf4017c-ab46-4f93-bf28-2e56f01dc1fc", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-13T21:25:44.641Z", + "proving_scheme": "groth16", + "status": "Ready", + "compute_time": "P0DT00H00M07.753917S", + "compute_times": { + "total": 7.827567195519805, + "queued": 1.101088, + "clean_up": 0.0016659628599882126, + "create_cpp": 0.05382388457655907, + "file_setup": 0.2323012426495552, + "compile_cpp": 4.666489981114864, + "create_r1cs": 0.011194108054041862, + "save_results": 0.006574276834726334, + "get_r1cs_info": 0.0007063709199428558, + "groth16_setup": 1.4113504774868488, + "export_verification_key": 1.440731318667531, + "download_trusted_setup_file": 0.0024564042687416077 + }, + "file_sizes": { + "total": 225418, + "circuit": 213240, + "total_gb": 0.000225418, + "total_mb": 0.225418, + "circuit.dat": 6176, + "code.tar.gz": 497, + "circuit.zkey": 2580, + "verification_key": 2925 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", + "Model:": "85", + "CPU(s):": "96", + "BogoMIPS:": "5400.00", + "L2 cache:": "48 MiB (48 instances)", + "L3 cache:": "66 MiB (2 instances)", + "Stepping:": "4", + "L1d cache:": "1.5 MiB (48 instances)", + "L1i cache:": "1.5 MiB (48 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "46 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", + "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", + "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Core(s) per socket:": "24", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", + "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", + "Vulnerability Meltdown:": "Mitigation; PTI", + "Vulnerability Retbleed:": "Mitigation; IBRS", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", + "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": 0, + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0, + "num_wires": 4, + "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", + "witness_compiler": "c++" + }, + { + "circuit_id": "db84e100-4f7c-48f6-9f4c-da94fb521ba4", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-13T21:25:44.325Z", + "proving_scheme": "groth16", + "status": "Ready", + "compute_time": "P0DT00H00M07.506195S", + "compute_times": { + "total": 7.577193319797516, + "queued": 1.126466, + "clean_up": 0.0016360525041818619, + "create_cpp": 0.050101183354854584, + "file_setup": 0.2603087369352579, + "compile_cpp": 4.455103283748031, + "create_r1cs": 0.0183374285697937, + "save_results": 0.0060533396899700165, + "get_r1cs_info": 0.0006764288991689682, + "groth16_setup": 1.3401963710784912, + "export_verification_key": 1.4419056754559278, + "download_trusted_setup_file": 0.002419356256723404 + }, + "file_sizes": { + "total": 225450, + "circuit": 213240, + "total_gb": 0.00022545, + "total_mb": 0.22545, + "circuit.dat": 6176, + "code.tar.gz": 529, + "circuit.zkey": 2580, + "verification_key": 2925 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tgz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", + "Model:": "85", + "CPU(s):": "96", + "BogoMIPS:": "5400.00", + "L2 cache:": "48 MiB (48 instances)", + "L3 cache:": "66 MiB (2 instances)", + "Stepping:": "4", + "L1d cache:": "1.5 MiB (48 instances)", + "L1i cache:": "1.5 MiB (48 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "46 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", + "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", + "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Core(s) per socket:": "24", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", + "On-line CPU(s) list:": "0,1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41-49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89-95", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88", + "Vulnerability Meltdown:": "Mitigation; PTI", + "Vulnerability Retbleed:": "Mitigation; IBRS", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", + "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": 0, + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0, + "num_wires": 4, + "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", + "witness_compiler": "c++" + }, + { + "circuit_id": "daa936a6-b70a-485a-bcd2-3225daac7ce4", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-13T21:25:44.263Z", + "proving_scheme": "groth16", + "status": "Ready", + "compute_time": "P0DT00H00M07.369064S", + "compute_times": { + "total": 7.462511362507939, + "queued": 1.390478, + "clean_up": 0.001627311110496521, + "create_cpp": 0.04592450521886349, + "file_setup": 0.2660178393125534, + "compile_cpp": 4.419640392065048, + "create_r1cs": 0.01586141064763069, + "save_results": 0.005797659978270531, + "get_r1cs_info": 0.0007299073040485382, + "groth16_setup": 1.3323616590350866, + "export_verification_key": 1.3716226406395435, + "download_trusted_setup_file": 0.0024577025324106216 + }, + "file_sizes": { + "total": 225424, + "circuit": 213240, + "total_gb": 0.000225424, + "total_mb": 0.225424, + "circuit.dat": 6176, + "code.tar.gz": 503, + "circuit.zkey": 2580, + "verification_key": 2925 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", + "Model:": "85", + "CPU(s):": "96", + "BogoMIPS:": "5400.00", + "L2 cache:": "48 MiB (48 instances)", + "L3 cache:": "66 MiB (2 instances)", + "Stepping:": "4", + "L1d cache:": "1.5 MiB (48 instances)", + "L1i cache:": "1.5 MiB (48 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "46 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", + "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", + "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Core(s) per socket:": "24", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", + "On-line CPU(s) list:": "0,1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41-49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89-95", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88", + "Vulnerability Meltdown:": "Mitigation; PTI", + "Vulnerability Retbleed:": "Mitigation; IBRS", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", + "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": 0, + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0, + "num_wires": 4, + "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", + "witness_compiler": "c++" + }, + { + "circuit_id": "d983ae2d-6e7f-4b0b-a504-1b0e78c4d685", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-13T21:25:09.525Z", + "proving_scheme": "groth16", + "status": "Ready", + "compute_time": "P0DT00H00M07.427022S", + "compute_times": { + "total": 7.503694657236338, + "queued": 8.80287, + "clean_up": 0.001652505248785019, + "create_cpp": 0.04614919610321522, + "file_setup": 0.24367324821650982, + "compile_cpp": 4.46963276527822, + "create_r1cs": 0.018824949860572815, + "save_results": 0.006128018721938133, + "get_r1cs_info": 0.0006784088909626007, + "groth16_setup": 1.3777296636253595, + "export_verification_key": 1.3364742659032345, + "download_trusted_setup_file": 0.0024303756654262543 + }, + "file_sizes": { + "total": 225419, + "circuit": 213240, + "total_gb": 0.000225419, + "total_mb": 0.225419, + "circuit.dat": 6176, + "code.tar.gz": 498, + "circuit.zkey": 2580, + "verification_key": 2925 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", + "Model:": "85", + "CPU(s):": "96", + "BogoMIPS:": "5400.00", + "L2 cache:": "48 MiB (48 instances)", + "L3 cache:": "66 MiB (2 instances)", + "Stepping:": "4", + "L1d cache:": "1.5 MiB (48 instances)", + "L1i cache:": "1.5 MiB (48 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "46 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", + "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", + "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Core(s) per socket:": "24", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", + "On-line CPU(s) list:": "0,1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41-49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89-95", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88", + "Vulnerability Meltdown:": "Mitigation; PTI", + "Vulnerability Retbleed:": "Mitigation; IBRS", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", + "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": 0, + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0, + "num_wires": 4, + "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", + "witness_compiler": "c++" + }, + { + "circuit_id": "14b9b4bd-be26-4a4d-8ad6-2a64b22551b2", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-13T21:25:08.674Z", + "proving_scheme": "groth16", + "status": "Ready", + "compute_time": "P0DT00H00M07.675444S", + "compute_times": { + "total": 7.7506245244294405, + "queued": 1.154247, + "clean_up": 0.0018263813108205795, + "create_cpp": 0.04755707457661629, + "file_setup": 0.23483316786587238, + "compile_cpp": 4.8177584912627935, + "create_r1cs": 0.016598980873823166, + "save_results": 0.005438234657049179, + "get_r1cs_info": 0.0006564464420080185, + "groth16_setup": 1.3556398712098598, + "export_verification_key": 1.2685111500322819, + "download_trusted_setup_file": 0.001376638188958168 + }, + "file_sizes": { + "total": 225418, + "circuit": 213240, + "total_gb": 0.000225418, + "total_mb": 0.225418, + "circuit.dat": 6176, + "code.tar.gz": 497, + "circuit.zkey": 2580, + "verification_key": 2925 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", + "Model:": "85", + "CPU(s):": "96", + "BogoMIPS:": "5400.00", + "L2 cache:": "48 MiB (48 instances)", + "L3 cache:": "66 MiB (2 instances)", + "Stepping:": "4", + "L1d cache:": "1.5 MiB (48 instances)", + "L1i cache:": "1.5 MiB (48 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "46 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", + "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", + "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Core(s) per socket:": "24", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", + "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", + "Vulnerability Meltdown:": "Mitigation; PTI", + "Vulnerability Retbleed:": "Mitigation; IBRS", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", + "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": 0, + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0, + "num_wires": 4, + "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", + "witness_compiler": "c++" + }, + { + "circuit_id": "8cb0a806-6e22-42a3-8938-9c5e4d43c494", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-13T21:25:08.288Z", + "proving_scheme": "groth16", + "status": "Ready", + "compute_time": "P0DT00H00M07.622437S", + "compute_times": { + "total": 7.712840095162392, + "queued": 1.352504, + "clean_up": 0.0015625767409801483, + "create_cpp": 0.0473609771579504, + "file_setup": 0.274502482265234, + "compile_cpp": 4.538209417834878, + "create_r1cs": 0.01853426732122898, + "save_results": 0.005721943452954292, + "get_r1cs_info": 0.0008788108825683594, + "groth16_setup": 1.478102458640933, + "export_verification_key": 1.3446549959480762, + "download_trusted_setup_file": 0.002755912020802498 + }, + "file_sizes": { + "total": 225424, + "circuit": 213240, + "total_gb": 0.000225424, + "total_mb": 0.225424, + "circuit.dat": 6176, + "code.tar.gz": 503, + "circuit.zkey": 2580, + "verification_key": 2925 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", + "Model:": "85", + "CPU(s):": "96", + "BogoMIPS:": "5400.00", + "L2 cache:": "48 MiB (48 instances)", + "L3 cache:": "66 MiB (2 instances)", + "Stepping:": "4", + "L1d cache:": "1.5 MiB (48 instances)", + "L1i cache:": "1.5 MiB (48 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "46 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", + "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", + "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Core(s) per socket:": "24", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", + "On-line CPU(s) list:": "0,1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41-49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89-95", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88", + "Vulnerability Meltdown:": "Mitigation; PTI", + "Vulnerability Retbleed:": "Mitigation; IBRS", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", + "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": 0, + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0, + "num_wires": 4, + "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", + "witness_compiler": "c++" + }, + { + "circuit_id": "28b80e00-ee5e-4fca-b8a2-a4c587a5b1a8", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-13T21:25:08.247Z", + "proving_scheme": "groth16", + "status": "Ready", + "compute_time": "P0DT00H00M07.776828S", + "compute_times": { + "total": 7.85468071885407, + "queued": 1.134198, + "clean_up": 0.0016253981739282608, + "create_cpp": 0.04779060371220112, + "file_setup": 0.25725592114031315, + "compile_cpp": 4.527051644399762, + "create_r1cs": 0.013751301914453506, + "save_results": 0.005713514983654022, + "get_r1cs_info": 0.0006611738353967667, + "groth16_setup": 1.5295016206800938, + "export_verification_key": 1.4682168513536453, + "download_trusted_setup_file": 0.0024928878992795944 + }, + "file_sizes": { + "total": 225450, + "circuit": 213240, + "total_gb": 0.00022545, + "total_mb": 0.22545, + "circuit.dat": 6176, + "code.tar.gz": 529, + "circuit.zkey": 2580, + "verification_key": 2925 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tgz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", + "Model:": "85", + "CPU(s):": "96", + "BogoMIPS:": "5400.00", + "L2 cache:": "48 MiB (48 instances)", + "L3 cache:": "66 MiB (2 instances)", + "Stepping:": "4", + "L1d cache:": "1.5 MiB (48 instances)", + "L1i cache:": "1.5 MiB (48 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "46 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", + "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", + "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Core(s) per socket:": "24", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", + "On-line CPU(s) list:": "0,1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41-49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89-95", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88", + "Vulnerability Meltdown:": "Mitigation; PTI", + "Vulnerability Retbleed:": "Mitigation; IBRS", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", + "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": 0, + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0, + "num_wires": 4, + "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", + "witness_compiler": "c++" + }, + { + "circuit_id": "1f3e9013-4907-423f-96a1-544e04d1e8fd", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-13T21:23:07.754Z", + "proving_scheme": "groth16", + "status": "Ready", + "compute_time": "P0DT00H00M07.641417S", + "compute_times": { + "total": 7.71757803671062, + "queued": 1.220704, + "clean_up": 0.0018078796565532684, + "create_cpp": 0.045883724465966225, + "file_setup": 0.2438215035945177, + "compile_cpp": 4.7984380554407835, + "create_r1cs": 0.01085478626191616, + "save_results": 0.005862860009074211, + "get_r1cs_info": 0.0006757788360118866, + "groth16_setup": 1.3325737826526165, + "export_verification_key": 1.2749093975871801, + "download_trusted_setup_file": 0.0024107228964567184 + }, + "file_sizes": { + "total": 225419, + "circuit": 213240, + "total_gb": 0.000225419, + "total_mb": 0.225419, + "circuit.dat": 6176, + "code.tar.gz": 498, + "circuit.zkey": 2580, + "verification_key": 2925 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", + "Model:": "85", + "CPU(s):": "96", + "BogoMIPS:": "5400.00", + "L2 cache:": "48 MiB (48 instances)", + "L3 cache:": "66 MiB (2 instances)", + "Stepping:": "4", + "L1d cache:": "1.5 MiB (48 instances)", + "L1i cache:": "1.5 MiB (48 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "46 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", + "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", + "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Core(s) per socket:": "24", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", + "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", + "Vulnerability Meltdown:": "Mitigation; PTI", + "Vulnerability Retbleed:": "Mitigation; IBRS", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", + "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": 0, + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0, + "num_wires": 4, + "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", + "witness_compiler": "c++" + }, + { + "circuit_id": "8c2be303-4dbb-4e08-8c83-9544d3a62005", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-13T21:22:21.392Z", + "proving_scheme": "groth16", + "status": "Ready", + "compute_time": "P0DT00H00M07.608258S", + "compute_times": { + "total": 7.6810623444616795, + "queued": 26.433306, + "clean_up": 0.0016187690198421478, + "create_cpp": 0.05313163995742798, + "file_setup": 0.22949195466935635, + "compile_cpp": 4.770350804552436, + "create_r1cs": 0.018276238813996315, + "save_results": 0.005552975460886955, + "get_r1cs_info": 0.0006811916828155518, + "groth16_setup": 1.3329863864928484, + "export_verification_key": 1.2661008946597576, + "download_trusted_setup_file": 0.002443268895149231 + }, + "file_sizes": { + "total": 225419, + "circuit": 213240, + "total_gb": 0.000225419, + "total_mb": 0.225419, + "circuit.dat": 6176, + "code.tar.gz": 498, + "circuit.zkey": 2580, + "verification_key": 2925 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", + "Model:": "85", + "CPU(s):": "96", + "BogoMIPS:": "5400.00", + "L2 cache:": "48 MiB (48 instances)", + "L3 cache:": "66 MiB (2 instances)", + "Stepping:": "4", + "L1d cache:": "1.5 MiB (48 instances)", + "L1i cache:": "1.5 MiB (48 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "46 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", + "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", + "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Core(s) per socket:": "24", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", + "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", + "Vulnerability Meltdown:": "Mitigation; PTI", + "Vulnerability Retbleed:": "Mitigation; IBRS", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", + "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": 0, + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0, + "num_wires": 4, + "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", + "witness_compiler": "c++" + }, + { + "circuit_id": "50efafde-7ee8-4af2-89ce-4d04fff606e7", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-13T21:22:20.790Z", + "proving_scheme": "groth16", + "status": "Ready", + "compute_time": "P0DT00H00M07.733827S", + "compute_times": { + "total": 7.811790093779564, + "queued": 18.099938, + "clean_up": 0.0017698965966701508, + "create_cpp": 0.04756795987486839, + "file_setup": 0.26168153434991837, + "compile_cpp": 4.9301884565502405, + "create_r1cs": 0.018425103276968002, + "save_results": 0.005480572581291199, + "get_r1cs_info": 0.0007110685110092163, + "groth16_setup": 1.26290631480515, + "export_verification_key": 1.2801700197160244, + "download_trusted_setup_file": 0.0024473965167999268 + }, + "file_sizes": { + "total": 225450, + "circuit": 213240, + "total_gb": 0.00022545, + "total_mb": 0.22545, + "circuit.dat": 6176, + "code.tar.gz": 529, + "circuit.zkey": 2580, + "verification_key": 2925 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tgz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", + "Model:": "85", + "CPU(s):": "96", + "BogoMIPS:": "5400.00", + "L2 cache:": "48 MiB (48 instances)", + "L3 cache:": "66 MiB (2 instances)", + "Stepping:": "4", + "L1d cache:": "1.5 MiB (48 instances)", + "L1i cache:": "1.5 MiB (48 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "46 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", + "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", + "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Core(s) per socket:": "24", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", + "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", + "Vulnerability Meltdown:": "Mitigation; PTI", + "Vulnerability Retbleed:": "Mitigation; IBRS", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", + "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": 0, + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0, + "num_wires": 4, + "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", + "witness_compiler": "c++" + }, + { + "circuit_id": "b32c29df-aed4-460d-a55b-c69b3fd14c79", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-13T21:22:20.127Z", + "proving_scheme": "groth16", + "status": "Ready", + "compute_time": "P0DT00H00M07.516072S", + "compute_times": { + "total": 7.594199365004897, + "queued": 1.179891, + "clean_up": 0.0016085132956504822, + "create_cpp": 0.047564439475536346, + "file_setup": 0.24740388244390488, + "compile_cpp": 4.707322858273983, + "create_r1cs": 0.01673438772559166, + "save_results": 0.005771454423666, + "get_r1cs_info": 0.0006707236170768738, + "groth16_setup": 1.2979658357799053, + "export_verification_key": 1.2663146257400513, + "download_trusted_setup_file": 0.0023819822818040848 + }, + "file_sizes": { + "total": 225418, + "circuit": 213240, + "total_gb": 0.000225418, + "total_mb": 0.225418, + "circuit.dat": 6176, + "code.tar.gz": 497, + "circuit.zkey": 2580, + "verification_key": 2925 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", + "Model:": "85", + "CPU(s):": "96", + "BogoMIPS:": "5400.00", + "L2 cache:": "48 MiB (48 instances)", + "L3 cache:": "66 MiB (2 instances)", + "Stepping:": "4", + "L1d cache:": "1.5 MiB (48 instances)", + "L1i cache:": "1.5 MiB (48 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "46 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", + "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", + "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Core(s) per socket:": "24", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", + "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", + "Vulnerability Meltdown:": "Mitigation; PTI", + "Vulnerability Retbleed:": "Mitigation; IBRS", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", + "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": 0, + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0, + "num_wires": 4, + "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", + "witness_compiler": "c++" + }, + { + "circuit_id": "27853e5c-3d53-406d-90ba-bee337369510", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-13T21:22:20.118Z", + "proving_scheme": "groth16", + "status": "Ready", + "compute_time": "P0DT00H00M07.691865S", + "compute_times": { + "total": 7.768615400418639, + "queued": 9.916591, + "clean_up": 0.0023098569363355637, + "create_cpp": 0.05343518406152725, + "file_setup": 0.23305759578943253, + "compile_cpp": 4.7266155276447535, + "create_r1cs": 0.016702940687537193, + "save_results": 0.006057048216462135, + "get_r1cs_info": 0.0006873272359371185, + "groth16_setup": 1.3462165966629982, + "export_verification_key": 1.3805092219263315, + "download_trusted_setup_file": 0.0025850217789411545 + }, + "file_sizes": { + "total": 225424, + "circuit": 213240, + "total_gb": 0.000225424, + "total_mb": 0.225424, + "circuit.dat": 6176, + "code.tar.gz": 503, + "circuit.zkey": 2580, + "verification_key": 2925 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", + "Model:": "85", + "CPU(s):": "96", + "BogoMIPS:": "5400.00", + "L2 cache:": "48 MiB (48 instances)", + "L3 cache:": "66 MiB (2 instances)", + "Stepping:": "4", + "L1d cache:": "1.5 MiB (48 instances)", + "L1i cache:": "1.5 MiB (48 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "46 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", + "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", + "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Core(s) per socket:": "24", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", + "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", + "Vulnerability Meltdown:": "Mitigation; PTI", + "Vulnerability Retbleed:": "Mitigation; IBRS", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", + "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": 0, + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0, + "num_wires": 4, + "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", + "witness_compiler": "c++" + }, + { + "circuit_id": "5beab6fd-e879-420a-afa8-3de72e1a55f7", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-13T21:19:46.504Z", + "proving_scheme": "groth16", + "status": "Ready", + "compute_time": "P0DT00H00M07.515950S", + "compute_times": { + "total": 7.589921785518527, + "queued": 10.157228, + "clean_up": 0.0007169600576162338, + "create_cpp": 0.046469248831272125, + "file_setup": 0.2272897120565176, + "compile_cpp": 4.710785340517759, + "create_r1cs": 0.011910352855920792, + "save_results": 0.004649905487895012, + "get_r1cs_info": 0.0008330028504133224, + "groth16_setup": 1.2739597726613283, + "export_verification_key": 1.3097787145525217, + "download_trusted_setup_file": 0.003099275752902031 + }, + "file_sizes": { + "total": 225419, + "circuit": 213240, + "total_gb": 0.000225419, + "total_mb": 0.225419, + "circuit.dat": 6176, + "code.tar.gz": 498, + "circuit.zkey": 2580, + "verification_key": 2925 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", + "Model:": "85", + "CPU(s):": "96", + "BogoMIPS:": "5400.00", + "L2 cache:": "48 MiB (48 instances)", + "L3 cache:": "66 MiB (2 instances)", + "Stepping:": "4", + "L1d cache:": "1.5 MiB (48 instances)", + "L1i cache:": "1.5 MiB (48 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "46 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", + "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", + "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Core(s) per socket:": "24", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", + "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", + "Vulnerability Meltdown:": "Mitigation; PTI", + "Vulnerability Retbleed:": "Mitigation; IBRS", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", + "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": 0, + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0, + "num_wires": 4, + "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", + "witness_compiler": "c++" + }, + { + "circuit_id": "3614ff84-c93d-4e30-b8b9-ec24358b42c0", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-13T21:19:45.239Z", + "proving_scheme": "groth16", + "status": "Ready", + "compute_time": "P0DT00H00M07.594156S", + "compute_times": { + "total": 7.672163272276521, + "queued": 2.675083, + "clean_up": 0.001137731596827507, + "create_cpp": 0.05406654439866543, + "file_setup": 0.24084424786269665, + "compile_cpp": 4.693928143009543, + "create_r1cs": 0.01765979267656803, + "save_results": 0.0036431998014450073, + "get_r1cs_info": 0.0006935875862836838, + "groth16_setup": 1.344341717660427, + "export_verification_key": 1.3129563517868519, + "download_trusted_setup_file": 0.0024511590600013733 + }, + "file_sizes": { + "total": 225418, + "circuit": 213240, + "total_gb": 0.000225418, + "total_mb": 0.225418, + "circuit.dat": 6176, + "code.tar.gz": 497, + "circuit.zkey": 2580, + "verification_key": 2925 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", + "Model:": "85", + "CPU(s):": "96", + "BogoMIPS:": "5400.00", + "L2 cache:": "48 MiB (48 instances)", + "L3 cache:": "66 MiB (2 instances)", + "Stepping:": "4", + "L1d cache:": "1.5 MiB (48 instances)", + "L1i cache:": "1.5 MiB (48 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "46 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", + "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", + "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Core(s) per socket:": "24", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", + "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", + "Vulnerability Meltdown:": "Mitigation; PTI", + "Vulnerability Retbleed:": "Mitigation; IBRS", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", + "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": 0, + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0, + "num_wires": 4, + "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", + "witness_compiler": "c++" + }, + { + "circuit_id": "152636dc-fa99-421f-9111-2da84bf32acc", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-13T21:18:51.613Z", + "proving_scheme": "groth16", + "status": "Ready", + "compute_time": "P0DT00H00M07.504325S", + "compute_times": { + "total": 7.582463687285781, + "queued": 8.941439, + "clean_up": 0.0015817917883396149, + "create_cpp": 0.04805071838200092, + "file_setup": 0.24654102325439453, + "compile_cpp": 4.683576079085469, + "create_r1cs": 0.018908562138676643, + "save_results": 0.005744511261582375, + "get_r1cs_info": 0.0006975065916776657, + "groth16_setup": 1.3209072556346655, + "export_verification_key": 1.253587955608964, + "download_trusted_setup_file": 0.0025104787200689316 + }, + "file_sizes": { + "total": 225418, + "circuit": 213240, + "total_gb": 0.000225418, + "total_mb": 0.225418, + "circuit.dat": 6176, + "code.tar.gz": 497, + "circuit.zkey": 2580, + "verification_key": 2925 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", + "Model:": "85", + "CPU(s):": "96", + "BogoMIPS:": "5400.00", + "L2 cache:": "48 MiB (48 instances)", + "L3 cache:": "66 MiB (2 instances)", + "Stepping:": "4", + "L1d cache:": "1.5 MiB (48 instances)", + "L1i cache:": "1.5 MiB (48 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "46 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", + "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", + "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Core(s) per socket:": "24", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", + "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", + "Vulnerability Meltdown:": "Mitigation; PTI", + "Vulnerability Retbleed:": "Mitigation; IBRS", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", + "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": 0, + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0, + "num_wires": 4, + "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", + "witness_compiler": "c++" + }, + { + "circuit_id": "a4dcc99e-8071-4ea2-a849-d81bca825ede", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-13T21:18:50.708Z", + "proving_scheme": "groth16", + "status": "Ready", + "compute_time": "P0DT00H00M07.463569S", + "compute_times": { + "total": 7.540723716840148, + "queued": 1.171693, + "clean_up": 0.0016952920705080032, + "create_cpp": 0.05335593223571777, + "file_setup": 0.23299168795347214, + "compile_cpp": 4.694493172690272, + "create_r1cs": 0.015898721292614937, + "save_results": 0.004501448944211006, + "get_r1cs_info": 0.0006934106349945068, + "groth16_setup": 1.2703441120684147, + "export_verification_key": 1.263868784531951, + "download_trusted_setup_file": 0.002431286498904228 + }, + "file_sizes": { + "total": 225418, + "circuit": 213240, + "total_gb": 0.000225418, + "total_mb": 0.225418, + "circuit.dat": 6176, + "code.tar.gz": 497, + "circuit.zkey": 2580, + "verification_key": 2925 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", + "Model:": "85", + "CPU(s):": "96", + "BogoMIPS:": "5400.00", + "L2 cache:": "48 MiB (48 instances)", + "L3 cache:": "66 MiB (2 instances)", + "Stepping:": "4", + "L1d cache:": "1.5 MiB (48 instances)", + "L1i cache:": "1.5 MiB (48 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "46 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", + "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", + "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Core(s) per socket:": "24", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", + "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", + "Vulnerability Meltdown:": "Mitigation; PTI", + "Vulnerability Retbleed:": "Mitigation; IBRS", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", + "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": 0, + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0, + "num_wires": 4, + "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", + "witness_compiler": "c++" + }, + { + "circuit_id": "7257082b-8a36-4532-adab-5c561cde2a29", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-13T21:12:32.316Z", + "proving_scheme": "groth16", + "status": "Ready", + "compute_time": "P0DT00H00M07.729830S", + "compute_times": { + "total": 7.805140299722552, + "queued": 1.094657, + "clean_up": 0.0016505271196365356, + "create_cpp": 0.05546964891254902, + "file_setup": 0.2259269542992115, + "compile_cpp": 4.886959254741669, + "create_r1cs": 0.016729675233364105, + "save_results": 0.005791829898953438, + "get_r1cs_info": 0.0006887372583150864, + "groth16_setup": 1.357726663351059, + "export_verification_key": 1.2512025628238916, + "download_trusted_setup_file": 0.0025302208960056305 + }, + "file_sizes": { + "total": 225418, + "circuit": 213240, + "total_gb": 0.000225418, + "total_mb": 0.225418, + "circuit.dat": 6176, + "code.tar.gz": 497, + "circuit.zkey": 2580, + "verification_key": 2925 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", + "Model:": "85", + "CPU(s):": "96", + "BogoMIPS:": "5400.00", + "L2 cache:": "48 MiB (48 instances)", + "L3 cache:": "66 MiB (2 instances)", + "Stepping:": "4", + "L1d cache:": "1.5 MiB (48 instances)", + "L1i cache:": "1.5 MiB (48 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "46 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", + "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", + "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Core(s) per socket:": "24", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", + "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", + "Vulnerability Meltdown:": "Mitigation; PTI", + "Vulnerability Retbleed:": "Mitigation; IBRS", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", + "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": 0, + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0, + "num_wires": 4, + "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", + "witness_compiler": "c++" + }, + { + "circuit_id": "b6cda26c-e9ae-481f-a455-c1905782cc5a", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-13T21:12:30.890Z", + "proving_scheme": "groth16", + "status": "Ready", + "compute_time": "P0DT00H00M07.515835S", + "compute_times": { + "total": 7.597714696079493, + "queued": 1.112794, + "clean_up": 0.0016388893127441406, + "create_cpp": 0.055322440341115, + "file_setup": 0.2542826198041439, + "compile_cpp": 4.492570606991649, + "create_r1cs": 0.018006742000579834, + "save_results": 0.005599640309810638, + "get_r1cs_info": 0.0007673837244510651, + "groth16_setup": 1.3414161559194326, + "export_verification_key": 1.4249787032604218, + "download_trusted_setup_file": 0.0025149118155241013 + }, + "file_sizes": { + "total": 225419, + "circuit": 213240, + "total_gb": 0.000225419, + "total_mb": 0.225419, + "circuit.dat": 6176, + "code.tar.gz": 498, + "circuit.zkey": 2580, + "verification_key": 2925 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", + "Model:": "85", + "CPU(s):": "96", + "BogoMIPS:": "5400.00", + "L2 cache:": "48 MiB (48 instances)", + "L3 cache:": "66 MiB (2 instances)", + "Stepping:": "4", + "L1d cache:": "1.5 MiB (48 instances)", + "L1i cache:": "1.5 MiB (48 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "46 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", + "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", + "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Core(s) per socket:": "24", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", + "On-line CPU(s) list:": "0,1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41-49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89-95", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88", + "Vulnerability Meltdown:": "Mitigation; PTI", + "Vulnerability Retbleed:": "Mitigation; IBRS", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", + "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": 0, + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0, + "num_wires": 4, + "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", + "witness_compiler": "c++" + }, + { + "circuit_id": "a39533e5-976d-4b15-86fa-fa2572212c6a", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-13T21:11:43.620Z", + "proving_scheme": "groth16", + "status": "Ready", + "compute_time": "P0DT00H00M07.525638S", + "compute_times": { + "total": 7.6020667646080256, + "queued": 1.096438, + "clean_up": 0.0021714698523283005, + "create_cpp": 0.04854712076485157, + "file_setup": 0.24291070736944675, + "compile_cpp": 4.659763751551509, + "create_r1cs": 0.010860981419682503, + "save_results": 0.006801890209317207, + "get_r1cs_info": 0.0006881803274154663, + "groth16_setup": 1.3576972987502813, + "export_verification_key": 1.2697169426828623, + "download_trusted_setup_file": 0.0024792905896902084 + }, + "file_sizes": { + "total": 225419, + "circuit": 213240, + "total_gb": 0.000225419, + "total_mb": 0.225419, + "circuit.dat": 6176, + "code.tar.gz": 498, + "circuit.zkey": 2580, + "verification_key": 2925 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", + "Model:": "85", + "CPU(s):": "96", + "BogoMIPS:": "5400.00", + "L2 cache:": "48 MiB (48 instances)", + "L3 cache:": "66 MiB (2 instances)", + "Stepping:": "4", + "L1d cache:": "1.5 MiB (48 instances)", + "L1i cache:": "1.5 MiB (48 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "46 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", + "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", + "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Core(s) per socket:": "24", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", + "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", + "Vulnerability Meltdown:": "Mitigation; PTI", + "Vulnerability Retbleed:": "Mitigation; IBRS", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", + "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": 0, + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0, + "num_wires": 4, + "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", + "witness_compiler": "c++" + }, + { + "circuit_id": "67af6d38-e3dd-41f9-a73c-2a8cffeb60f3", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-13T21:11:17.808Z", + "proving_scheme": "groth16", + "status": "Ready", + "compute_time": "P0DT00H00M07.696916S", + "compute_times": { + "total": 7.800829553976655, + "queued": 8.900049, + "clean_up": 0.0017651356756687164, + "create_cpp": 0.048156820237636566, + "file_setup": 0.26956662349402905, + "compile_cpp": 4.73041276447475, + "create_r1cs": 0.01830790378153324, + "save_results": 0.0053640734404325485, + "get_r1cs_info": 0.0007263273000717163, + "groth16_setup": 1.3079448156058788, + "export_verification_key": 1.4156472980976105, + "download_trusted_setup_file": 0.0024303123354911804 + }, + "file_sizes": { + "total": 225420, + "circuit": 213240, + "total_gb": 0.00022542, + "total_mb": 0.22542, + "circuit.dat": 6176, + "code.tar.gz": 499, + "circuit.zkey": 2580, + "verification_key": 2925 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", + "Model:": "85", + "CPU(s):": "96", + "BogoMIPS:": "5400.00", + "L2 cache:": "48 MiB (48 instances)", + "L3 cache:": "66 MiB (2 instances)", + "Stepping:": "4", + "L1d cache:": "1.5 MiB (48 instances)", + "L1i cache:": "1.5 MiB (48 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "46 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", + "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", + "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Core(s) per socket:": "24", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", + "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", + "Vulnerability Meltdown:": "Mitigation; PTI", + "Vulnerability Retbleed:": "Mitigation; IBRS", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", + "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": 0, + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0, + "num_wires": 4, + "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", + "witness_compiler": "c++" + }, + { + "circuit_id": "29482186-ed38-40a1-8f41-396e46cbe2af", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-13T21:11:16.527Z", + "proving_scheme": "groth16", + "status": "Ready", + "compute_time": "P0DT00H00M07.843573S", + "compute_times": { + "total": 7.918207410722971, + "queued": 1.1316, + "clean_up": 0.001619592308998108, + "create_cpp": 0.05113654024899006, + "file_setup": 0.22972466051578522, + "compile_cpp": 4.823534423485398, + "create_r1cs": 0.012231025844812393, + "save_results": 0.005758641287684441, + "get_r1cs_info": 0.0007135551422834396, + "groth16_setup": 1.2769745737314224, + "export_verification_key": 1.5135366152971983, + "download_trusted_setup_file": 0.002458721399307251 + }, + "file_sizes": { + "total": 225419, + "circuit": 213240, + "total_gb": 0.000225419, + "total_mb": 0.225419, + "circuit.dat": 6176, + "code.tar.gz": 498, + "circuit.zkey": 2580, + "verification_key": 2925 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", + "Model:": "85", + "CPU(s):": "96", + "BogoMIPS:": "5400.00", + "L2 cache:": "48 MiB (48 instances)", + "L3 cache:": "66 MiB (2 instances)", + "Stepping:": "4", + "L1d cache:": "1.5 MiB (48 instances)", + "L1i cache:": "1.5 MiB (48 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "46 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", + "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", + "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Core(s) per socket:": "24", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", + "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", + "Vulnerability Meltdown:": "Mitigation; PTI", + "Vulnerability Retbleed:": "Mitigation; IBRS", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", + "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": 0, + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0, + "num_wires": 4, + "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", + "witness_compiler": "c++" + }, + { + "circuit_id": "12e11f6e-15fe-48a5-a4ff-5691bda05b5d", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-13T21:05:59.342Z", + "proving_scheme": "groth16", + "status": "Ready", + "compute_time": "P0DT00H00M07.733115S", + "compute_times": { + "total": 7.8099565505981445, + "queued": 1.165322, + "clean_up": 0.0017883870750665665, + "create_cpp": 0.04638352990150452, + "file_setup": 0.23020289093255997, + "compile_cpp": 4.791501699015498, + "create_r1cs": 0.018074993044137955, + "save_results": 0.005634209141135216, + "get_r1cs_info": 0.0005376394838094711, + "groth16_setup": 1.3833652567118406, + "export_verification_key": 1.3307239394634962, + "download_trusted_setup_file": 0.001316094771027565 + }, + "file_sizes": { + "total": 225420, + "circuit": 213240, + "total_gb": 0.00022542, + "total_mb": 0.22542, + "circuit.dat": 6176, + "code.tar.gz": 499, + "circuit.zkey": 2580, + "verification_key": 2925 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", + "Model:": "85", + "CPU(s):": "96", + "BogoMIPS:": "5400.00", + "L2 cache:": "48 MiB (48 instances)", + "L3 cache:": "66 MiB (2 instances)", + "Stepping:": "4", + "L1d cache:": "1.5 MiB (48 instances)", + "L1i cache:": "1.5 MiB (48 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "46 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", + "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", + "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Core(s) per socket:": "24", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", + "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", + "Vulnerability Meltdown:": "Mitigation; PTI", + "Vulnerability Retbleed:": "Mitigation; IBRS", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", + "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": 0, + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0, + "num_wires": 4, + "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", + "witness_compiler": "c++" + }, + { + "circuit_id": "57750805-da3a-4aed-8713-fca8c8217d85", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-13T21:05:58.051Z", + "proving_scheme": "groth16", + "status": "Ready", + "compute_time": "P0DT00H00M07.523016S", + "compute_times": { + "total": 7.615536188706756, + "queued": 1.111699, + "clean_up": 0.0017289314419031143, + "create_cpp": 0.048704590648412704, + "file_setup": 0.30340966396033764, + "compile_cpp": 4.493021473288536, + "create_r1cs": 0.01810857281088829, + "save_results": 0.005765935406088829, + "get_r1cs_info": 0.0006618835031986237, + "groth16_setup": 1.3754791505634785, + "export_verification_key": 1.3655782397836447, + "download_trusted_setup_file": 0.002464406192302704 + }, + "file_sizes": { + "total": 225420, + "circuit": 213240, + "total_gb": 0.00022542, + "total_mb": 0.22542, + "circuit.dat": 6176, + "code.tar.gz": 499, + "circuit.zkey": 2580, + "verification_key": 2925 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", + "Model:": "85", + "CPU(s):": "96", + "BogoMIPS:": "5400.00", + "L2 cache:": "48 MiB (48 instances)", + "L3 cache:": "66 MiB (2 instances)", + "Stepping:": "4", + "L1d cache:": "1.5 MiB (48 instances)", + "L1i cache:": "1.5 MiB (48 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "46 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", + "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", + "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Core(s) per socket:": "24", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", + "On-line CPU(s) list:": "0,1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41-49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89-95", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88", + "Vulnerability Meltdown:": "Mitigation; PTI", + "Vulnerability Retbleed:": "Mitigation; IBRS", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", + "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": 0, + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0, + "num_wires": 4, + "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", + "witness_compiler": "c++" + }, + { + "circuit_id": "ae9ee957-3550-4e73-b85c-67d2d105059e", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-13T21:05:37.596Z", + "proving_scheme": "groth16", + "status": "Ready", + "compute_time": "P0DT00H00M07.637196S", + "compute_times": { + "total": 7.714641183614731, + "queued": 1.118562, + "clean_up": 0.0010698717087507248, + "create_cpp": 0.04957794025540352, + "file_setup": 0.27610501274466515, + "compile_cpp": 4.523411748930812, + "create_r1cs": 0.01730293408036232, + "save_results": 0.005932852625846863, + "get_r1cs_info": 0.0006670821458101273, + "groth16_setup": 1.4076793268322945, + "export_verification_key": 1.4298051688820124, + "download_trusted_setup_file": 0.0024724751710891724 + }, + "file_sizes": { + "total": 225420, + "circuit": 213240, + "total_gb": 0.00022542, + "total_mb": 0.22542, + "circuit.dat": 6176, + "code.tar.gz": 499, + "circuit.zkey": 2580, + "verification_key": 2925 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", + "Model:": "85", + "CPU(s):": "96", + "BogoMIPS:": "5400.00", + "L2 cache:": "48 MiB (48 instances)", + "L3 cache:": "66 MiB (2 instances)", + "Stepping:": "4", + "L1d cache:": "1.5 MiB (48 instances)", + "L1i cache:": "1.5 MiB (48 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "46 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", + "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", + "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Core(s) per socket:": "24", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", + "On-line CPU(s) list:": "0,1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41-49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89-95", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88", + "Vulnerability Meltdown:": "Mitigation; PTI", + "Vulnerability Retbleed:": "Mitigation; IBRS", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", + "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": 0, + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0, + "num_wires": 4, + "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", + "witness_compiler": "c++" + }, + { + "circuit_id": "a87238f3-8b90-4023-9dea-0e882b7981ba", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-13T21:05:36.364Z", + "proving_scheme": "groth16", + "status": "Ready", + "compute_time": "P0DT00H00M07.776732S", + "compute_times": { + "total": 7.861673956736922, + "queued": 1.17302, + "clean_up": 0.001835215836763382, + "create_cpp": 0.05279397964477539, + "file_setup": 0.24823277816176414, + "compile_cpp": 4.638548230752349, + "create_r1cs": 0.01119343563914299, + "save_results": 0.00524553656578064, + "get_r1cs_info": 0.000684596598148346, + "groth16_setup": 1.4201921876519918, + "export_verification_key": 1.4799509402364492, + "download_trusted_setup_file": 0.002554507926106453 + }, + "file_sizes": { + "total": 225419, + "circuit": 213240, + "total_gb": 0.000225419, + "total_mb": 0.225419, + "circuit.dat": 6176, + "code.tar.gz": 498, + "circuit.zkey": 2580, + "verification_key": 2925 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", + "Model:": "85", + "CPU(s):": "96", + "BogoMIPS:": "5400.00", + "L2 cache:": "48 MiB (48 instances)", + "L3 cache:": "66 MiB (2 instances)", + "Stepping:": "4", + "L1d cache:": "1.5 MiB (48 instances)", + "L1i cache:": "1.5 MiB (48 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "46 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", + "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", + "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Core(s) per socket:": "24", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", + "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", + "Vulnerability Meltdown:": "Mitigation; PTI", + "Vulnerability Retbleed:": "Mitigation; IBRS", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", + "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": 0, + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0, + "num_wires": 4, + "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", + "witness_compiler": "c++" + }, + { + "circuit_id": "75c7a835-d810-4e78-a21e-f44ea2cb04e3", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-13T21:03:42.166Z", + "proving_scheme": "groth16", + "status": "Ready", + "compute_time": "P0DT00H00M07.967605S", + "compute_times": { + "total": 8.046053376048803, + "queued": 26.21097, + "clean_up": 0.0018648356199264526, + "create_cpp": 0.05596049129962921, + "file_setup": 0.24261613935232162, + "compile_cpp": 4.93765183351934, + "create_r1cs": 0.017572950571775436, + "save_results": 0.0059426408261060715, + "get_r1cs_info": 0.0006746537983417511, + "groth16_setup": 1.2796957772225142, + "export_verification_key": 1.5012296475470066, + "download_trusted_setup_file": 0.002398606389760971 + }, + "file_sizes": { + "total": 225419, + "circuit": 213240, + "total_gb": 0.000225419, + "total_mb": 0.225419, + "circuit.dat": 6176, + "code.tar.gz": 498, + "circuit.zkey": 2580, + "verification_key": 2925 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", + "Model:": "85", + "CPU(s):": "96", + "BogoMIPS:": "5400.00", + "L2 cache:": "48 MiB (48 instances)", + "L3 cache:": "66 MiB (2 instances)", + "Stepping:": "4", + "L1d cache:": "1.5 MiB (48 instances)", + "L1i cache:": "1.5 MiB (48 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "46 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", + "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", + "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Core(s) per socket:": "24", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", + "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", + "Vulnerability Meltdown:": "Mitigation; PTI", + "Vulnerability Retbleed:": "Mitigation; IBRS", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", + "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": 0, + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0, + "num_wires": 4, + "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", + "witness_compiler": "c++" + }, + { + "circuit_id": "6fa42f17-7d1f-4dee-9909-2bf61f577c5f", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-13T21:03:41.592Z", + "proving_scheme": "groth16", + "status": "Ready", + "compute_time": "P0DT00H00M07.580787S", + "compute_times": { + "total": 7.655207581818104, + "queued": 17.985551, + "clean_up": 0.002056419849395752, + "create_cpp": 0.052002936601638794, + "file_setup": 0.2451938558369875, + "compile_cpp": 4.685491403564811, + "create_r1cs": 0.010299311950802803, + "save_results": 0.006189430132508278, + "get_r1cs_info": 0.0008878409862518311, + "groth16_setup": 1.272452101111412, + "export_verification_key": 1.3772340640425682, + "download_trusted_setup_file": 0.0030425861477851868 + }, + "file_sizes": { + "total": 225450, + "circuit": 213240, + "total_gb": 0.00022545, + "total_mb": 0.22545, + "circuit.dat": 6176, + "code.tar.gz": 529, + "circuit.zkey": 2580, + "verification_key": 2925 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tgz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", + "Model:": "85", + "CPU(s):": "96", + "BogoMIPS:": "5400.00", + "L2 cache:": "48 MiB (48 instances)", + "L3 cache:": "66 MiB (2 instances)", + "Stepping:": "4", + "L1d cache:": "1.5 MiB (48 instances)", + "L1i cache:": "1.5 MiB (48 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "46 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", + "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", + "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Core(s) per socket:": "24", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", + "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", + "Vulnerability Meltdown:": "Mitigation; PTI", + "Vulnerability Retbleed:": "Mitigation; IBRS", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", + "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": 0, + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0, + "num_wires": 4, + "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", + "witness_compiler": "c++" + }, + { + "circuit_id": "9f6ab24a-2672-4c5a-931c-3582ddee3be3", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-13T21:03:41.189Z", + "proving_scheme": "groth16", + "status": "Ready", + "compute_time": "P0DT00H00M07.415751S", + "compute_times": { + "total": 7.493710907176137, + "queued": 9.715005, + "clean_up": 0.0016273707151412964, + "create_cpp": 0.05303688161075115, + "file_setup": 0.2430403921753168, + "compile_cpp": 4.668433295562863, + "create_r1cs": 0.012174364179372787, + "save_results": 0.005725568160414696, + "get_r1cs_info": 0.0008735992014408112, + "groth16_setup": 1.244223466143012, + "export_verification_key": 1.2610872369259596, + "download_trusted_setup_file": 0.0030381176620721817 + }, + "file_sizes": { + "total": 225424, + "circuit": 213240, + "total_gb": 0.000225424, + "total_mb": 0.225424, + "circuit.dat": 6176, + "code.tar.gz": 503, + "circuit.zkey": 2580, + "verification_key": 2925 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", + "Model:": "85", + "CPU(s):": "96", + "BogoMIPS:": "5400.00", + "L2 cache:": "48 MiB (48 instances)", + "L3 cache:": "66 MiB (2 instances)", + "Stepping:": "4", + "L1d cache:": "1.5 MiB (48 instances)", + "L1i cache:": "1.5 MiB (48 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "46 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", + "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", + "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Core(s) per socket:": "24", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", + "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", + "Vulnerability Meltdown:": "Mitigation; PTI", + "Vulnerability Retbleed:": "Mitigation; IBRS", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", + "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": 0, + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0, + "num_wires": 4, + "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", + "witness_compiler": "c++" + }, + { + "circuit_id": "cea5b4b2-5dd4-4d24-a879-60b84d523800", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-13T21:03:40.905Z", + "proving_scheme": "groth16", + "status": "Ready", + "compute_time": "P0DT00H00M07.587273S", + "compute_times": { + "total": 7.663808356970549, + "queued": 1.158335, + "clean_up": 0.0018277596682310104, + "create_cpp": 0.05417764373123646, + "file_setup": 0.24907702021300793, + "compile_cpp": 4.704896626994014, + "create_r1cs": 0.010135684162378311, + "save_results": 0.0060002803802490234, + "get_r1cs_info": 0.0007133446633815765, + "groth16_setup": 1.3235171046108007, + "export_verification_key": 1.3105034790933132, + "download_trusted_setup_file": 0.0025282446295022964 + }, + "file_sizes": { + "total": 225419, + "circuit": 213240, + "total_gb": 0.000225419, + "total_mb": 0.225419, + "circuit.dat": 6176, + "code.tar.gz": 498, + "circuit.zkey": 2580, + "verification_key": 2925 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", + "Model:": "85", + "CPU(s):": "96", + "BogoMIPS:": "5400.00", + "L2 cache:": "48 MiB (48 instances)", + "L3 cache:": "66 MiB (2 instances)", + "Stepping:": "4", + "L1d cache:": "1.5 MiB (48 instances)", + "L1i cache:": "1.5 MiB (48 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "46 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", + "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", + "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Core(s) per socket:": "24", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", + "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", + "Vulnerability Meltdown:": "Mitigation; PTI", + "Vulnerability Retbleed:": "Mitigation; IBRS", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", + "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": 0, + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0, + "num_wires": 4, + "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", + "witness_compiler": "c++" + }, + { + "circuit_id": "be85789b-7d19-4fd2-8ab6-79f116e99018", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-13T20:58:42.298Z", + "proving_scheme": "groth16", + "status": "Ready", + "compute_time": "P0DT00H00M07.612119S", + "compute_times": { + "total": 7.685093659907579, + "queued": 1.14216, + "clean_up": 0.002341996878385544, + "create_cpp": 0.05459519848227501, + "file_setup": 0.23490560427308083, + "compile_cpp": 4.658818148076534, + "create_r1cs": 0.016625098884105682, + "save_results": 0.00551554374396801, + "get_r1cs_info": 0.0008137207478284836, + "groth16_setup": 1.3161104060709476, + "export_verification_key": 1.3924682848155499, + "download_trusted_setup_file": 0.0024645328521728516 + }, + "file_sizes": { + "total": 225420, + "circuit": 213240, + "total_gb": 0.00022542, + "total_mb": 0.22542, + "circuit.dat": 6176, + "code.tar.gz": 499, + "circuit.zkey": 2580, + "verification_key": 2925 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", + "Model:": "85", + "CPU(s):": "96", + "BogoMIPS:": "5400.00", + "L2 cache:": "48 MiB (48 instances)", + "L3 cache:": "66 MiB (2 instances)", + "Stepping:": "4", + "L1d cache:": "1.5 MiB (48 instances)", + "L1i cache:": "1.5 MiB (48 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "46 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", + "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", + "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Core(s) per socket:": "24", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", + "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", + "Vulnerability Meltdown:": "Mitigation; PTI", + "Vulnerability Retbleed:": "Mitigation; IBRS", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", + "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": 0, + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0, + "num_wires": 4, + "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", + "witness_compiler": "c++" + }, + { + "circuit_id": "1a8a8918-7317-4e2e-a1ef-b66915916586", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-13T20:53:09.229Z", + "proving_scheme": "groth16", + "status": "Ready", + "compute_time": "P0DT00H00M07.762289S", + "compute_times": { + "total": 7.838186884298921, + "queued": 1.165658, + "clean_up": 0.0008691418915987015, + "create_cpp": 0.05640839971601963, + "file_setup": 0.25557226315140724, + "compile_cpp": 4.874635396525264, + "create_r1cs": 0.01985102891921997, + "save_results": 0.004785357043147087, + "get_r1cs_info": 0.000703742727637291, + "groth16_setup": 1.3269466310739517, + "export_verification_key": 1.2955008279532194, + "download_trusted_setup_file": 0.002431994304060936 + }, + "file_sizes": { + "total": 225420, + "circuit": 213240, + "total_gb": 0.00022542, + "total_mb": 0.22542, + "circuit.dat": 6176, + "code.tar.gz": 499, + "circuit.zkey": 2580, + "verification_key": 2925 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", + "Model:": "85", + "CPU(s):": "96", + "BogoMIPS:": "5400.00", + "L2 cache:": "48 MiB (48 instances)", + "L3 cache:": "66 MiB (2 instances)", + "Stepping:": "4", + "L1d cache:": "1.5 MiB (48 instances)", + "L1i cache:": "1.5 MiB (48 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "46 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", + "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", + "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Core(s) per socket:": "24", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", + "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", + "Vulnerability Meltdown:": "Mitigation; PTI", + "Vulnerability Retbleed:": "Mitigation; IBRS", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", + "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": 0, + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0, + "num_wires": 4, + "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", + "witness_compiler": "c++" + }, + { + "circuit_id": "11e941af-d1c5-4b5c-90d4-7779d3afbb3e", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-13T20:52:11.769Z", + "proving_scheme": "groth16", + "status": "Ready", + "compute_time": "P0DT00H00M07.415274S", + "compute_times": { + "total": 7.493496775627136, + "queued": 8.869445, + "clean_up": 0.0016371160745620728, + "create_cpp": 0.04689290374517441, + "file_setup": 0.2514117080718279, + "compile_cpp": 4.450153106823564, + "create_r1cs": 0.017276693135499954, + "save_results": 0.0053817834705114365, + "get_r1cs_info": 0.0006324015557765961, + "groth16_setup": 1.4012358412146568, + "export_verification_key": 1.3159835990518332, + "download_trusted_setup_file": 0.002422098070383072 + }, + "file_sizes": { + "total": 225418, + "circuit": 213240, + "total_gb": 0.000225418, + "total_mb": 0.225418, + "circuit.dat": 6176, + "code.tar.gz": 497, + "circuit.zkey": 2580, + "verification_key": 2925 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", + "Model:": "85", + "CPU(s):": "96", + "BogoMIPS:": "5400.00", + "L2 cache:": "48 MiB (48 instances)", + "L3 cache:": "66 MiB (2 instances)", + "Stepping:": "4", + "L1d cache:": "1.5 MiB (48 instances)", + "L1i cache:": "1.5 MiB (48 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "46 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", + "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", + "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Core(s) per socket:": "24", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", + "On-line CPU(s) list:": "0,1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41-49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89-95", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88", + "Vulnerability Meltdown:": "Mitigation; PTI", + "Vulnerability Retbleed:": "Mitigation; IBRS", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", + "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": 0, + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0, + "num_wires": 4, + "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", + "witness_compiler": "c++" + }, + { + "circuit_id": "40567a0b-db53-42b6-9faf-645b7d2b01d4", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-13T20:52:10.857Z", + "proving_scheme": "groth16", + "status": "Ready", + "compute_time": "P0DT00H00M07.844716S", + "compute_times": { + "total": 7.935871887952089, + "queued": 1.174927, + "clean_up": 0.0017419569194316864, + "create_cpp": 0.04830462113022804, + "file_setup": 0.2918488848954439, + "compile_cpp": 4.551170919090509, + "create_r1cs": 0.011252205818891525, + "save_results": 0.006273416802287102, + "get_r1cs_info": 0.000791722908616066, + "groth16_setup": 1.4771566465497017, + "export_verification_key": 1.544492220506072, + "download_trusted_setup_file": 0.002414800226688385 + }, + "file_sizes": { + "total": 225424, + "circuit": 213240, + "total_gb": 0.000225424, + "total_mb": 0.225424, + "circuit.dat": 6176, + "code.tar.gz": 503, + "circuit.zkey": 2580, + "verification_key": 2925 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", + "Model:": "85", + "CPU(s):": "96", + "BogoMIPS:": "5400.00", + "L2 cache:": "48 MiB (48 instances)", + "L3 cache:": "66 MiB (2 instances)", + "Stepping:": "4", + "L1d cache:": "1.5 MiB (48 instances)", + "L1i cache:": "1.5 MiB (48 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "46 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", + "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", + "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Core(s) per socket:": "24", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", + "On-line CPU(s) list:": "0,1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41-49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89-95", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88", + "Vulnerability Meltdown:": "Mitigation; PTI", + "Vulnerability Retbleed:": "Mitigation; IBRS", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", + "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": 0, + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0, + "num_wires": 4, + "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", + "witness_compiler": "c++" + }, + { + "circuit_id": "e8a3b8c4-a204-4377-aa16-6693ec6a47fe", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-13T20:52:10.473Z", + "proving_scheme": "groth16", + "status": "Ready", + "compute_time": "P0DT00H00M07.761080S", + "compute_times": { + "total": 7.84102806635201, + "queued": 1.191136, + "clean_up": 0.0016466900706291199, + "create_cpp": 0.050837548449635506, + "file_setup": 0.305857976898551, + "compile_cpp": 4.831999080255628, + "create_r1cs": 0.016980327665805817, + "save_results": 0.004616068676114082, + "get_r1cs_info": 0.0007538795471191406, + "groth16_setup": 1.377663504332304, + "export_verification_key": 1.2477229591459036, + "download_trusted_setup_file": 0.0024341512471437454 + }, + "file_sizes": { + "total": 225450, + "circuit": 213240, + "total_gb": 0.00022545, + "total_mb": 0.22545, + "circuit.dat": 6176, + "code.tar.gz": 529, + "circuit.zkey": 2580, + "verification_key": 2925 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tgz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", + "Model:": "85", + "CPU(s):": "96", + "BogoMIPS:": "5400.00", + "L2 cache:": "48 MiB (48 instances)", + "L3 cache:": "66 MiB (2 instances)", + "Stepping:": "4", + "L1d cache:": "1.5 MiB (48 instances)", + "L1i cache:": "1.5 MiB (48 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "46 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", + "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", + "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Core(s) per socket:": "24", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", + "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", + "Vulnerability Meltdown:": "Mitigation; PTI", + "Vulnerability Retbleed:": "Mitigation; IBRS", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", + "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": 0, + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0, + "num_wires": 4, + "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", + "witness_compiler": "c++" + }, + { + "circuit_id": "b45a2f28-629c-4b26-9d0f-74e89e9aa4a1", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-13T20:52:10.459Z", + "proving_scheme": "groth16", + "status": "Ready", + "compute_time": "P0DT00H00M07.772072S", + "compute_times": { + "total": 7.85684909299016, + "queued": 1.168927, + "clean_up": 0.001656675711274147, + "create_cpp": 0.046758586540818214, + "file_setup": 0.356998885050416, + "compile_cpp": 4.629376698285341, + "create_r1cs": 0.016368335112929344, + "save_results": 0.005804345011711121, + "get_r1cs_info": 0.0006794314831495285, + "groth16_setup": 1.4081361554563046, + "export_verification_key": 1.3879967276006937, + "download_trusted_setup_file": 0.002491012215614319 + }, + "file_sizes": { + "total": 225420, + "circuit": 213240, + "total_gb": 0.00022542, + "total_mb": 0.22542, + "circuit.dat": 6176, + "code.tar.gz": 499, + "circuit.zkey": 2580, + "verification_key": 2925 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", + "Model:": "85", + "CPU(s):": "96", + "BogoMIPS:": "5400.00", + "L2 cache:": "48 MiB (48 instances)", + "L3 cache:": "66 MiB (2 instances)", + "Stepping:": "4", + "L1d cache:": "1.5 MiB (48 instances)", + "L1i cache:": "1.5 MiB (48 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "46 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", + "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", + "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Core(s) per socket:": "24", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", + "On-line CPU(s) list:": "0,1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41-49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89-95", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88", + "Vulnerability Meltdown:": "Mitigation; PTI", + "Vulnerability Retbleed:": "Mitigation; IBRS", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", + "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": 0, + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0, + "num_wires": 4, + "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", + "witness_compiler": "c++" + }, + { + "circuit_id": "48abbf24-259f-449a-be8a-b38889c54d91", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-13T20:47:36.791Z", + "proving_scheme": "groth16", + "status": "Ready", + "compute_time": "P0DT00H00M07.699616S", + "compute_times": { + "total": 7.776923732832074, + "queued": 1.114412, + "clean_up": 0.0017519760876893997, + "create_cpp": 0.04844082519412041, + "file_setup": 0.2680229563266039, + "compile_cpp": 4.7926163002848625, + "create_r1cs": 0.01559528149664402, + "save_results": 0.005934497341513634, + "get_r1cs_info": 0.0007298476994037628, + "groth16_setup": 1.3021647650748491, + "export_verification_key": 1.3384632784873247, + "download_trusted_setup_file": 0.002724595367908478 + }, + "file_sizes": { + "total": 225418, + "circuit": 213240, + "total_gb": 0.000225418, + "total_mb": 0.225418, + "circuit.dat": 6176, + "code.tar.gz": 497, + "circuit.zkey": 2580, + "verification_key": 2925 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", + "Model:": "85", + "CPU(s):": "96", + "BogoMIPS:": "5400.00", + "L2 cache:": "48 MiB (48 instances)", + "L3 cache:": "66 MiB (2 instances)", + "Stepping:": "4", + "L1d cache:": "1.5 MiB (48 instances)", + "L1i cache:": "1.5 MiB (48 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "46 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", + "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", + "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Core(s) per socket:": "24", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", + "On-line CPU(s) list:": "0,1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41-49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89-95", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88", + "Vulnerability Meltdown:": "Mitigation; PTI", + "Vulnerability Retbleed:": "Mitigation; IBRS", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", + "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": 0, + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0, + "num_wires": 4, + "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", + "witness_compiler": "c++" + }, + { + "circuit_id": "c8cffa90-0d2d-49d1-bbdb-dfa109aa13a4", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-13T20:46:45.727Z", + "proving_scheme": "groth16", + "status": "Ready", + "compute_time": "P0DT00H00M07.613741S", + "compute_times": { + "total": 7.690422313287854, + "queued": 33.822267, + "clean_up": 0.0018018875271081924, + "create_cpp": 0.05492768436670303, + "file_setup": 0.2554306983947754, + "compile_cpp": 4.600179400295019, + "create_r1cs": 0.008259830996394157, + "save_results": 0.00659073144197464, + "get_r1cs_info": 0.0003707129508256912, + "groth16_setup": 1.3555676974356174, + "export_verification_key": 1.4054905492812395, + "download_trusted_setup_file": 0.0011803917586803436 + }, + "file_sizes": { + "total": 225419, + "circuit": 213240, + "total_gb": 0.000225419, + "total_mb": 0.225419, + "circuit.dat": 6176, + "code.tar.gz": 498, + "circuit.zkey": 2580, + "verification_key": 2925 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", + "Model:": "85", + "CPU(s):": "96", + "BogoMIPS:": "5400.00", + "L2 cache:": "48 MiB (48 instances)", + "L3 cache:": "66 MiB (2 instances)", + "Stepping:": "4", + "L1d cache:": "1.5 MiB (48 instances)", + "L1i cache:": "1.5 MiB (48 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "46 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", + "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", + "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Core(s) per socket:": "24", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", + "On-line CPU(s) list:": "0,1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41-49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89-95", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88", + "Vulnerability Meltdown:": "Mitigation; PTI", + "Vulnerability Retbleed:": "Mitigation; IBRS", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", + "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": 0, + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0, + "num_wires": 4, + "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", + "witness_compiler": "c++" + }, + { + "circuit_id": "552a7b11-54dd-4bcd-a182-b761b094ec0b", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-13T20:46:44.803Z", + "proving_scheme": "groth16", + "status": "Ready", + "compute_time": "P0DT00H00M07.515952S", + "compute_times": { + "total": 7.5932529624551535, + "queued": 32.746434, + "clean_up": 0.0010620690882205963, + "create_cpp": 0.04890178702771664, + "file_setup": 0.25152294524013996, + "compile_cpp": 4.557625237852335, + "create_r1cs": 0.016739951446652412, + "save_results": 0.004754070192575455, + "get_r1cs_info": 0.0006603635847568512, + "groth16_setup": 1.3873532582074404, + "export_verification_key": 1.3215058222413063, + "download_trusted_setup_file": 0.002488488331437111 + }, + "file_sizes": { + "total": 225420, + "circuit": 213240, + "total_gb": 0.00022542, + "total_mb": 0.22542, + "circuit.dat": 6176, + "code.tar.gz": 499, + "circuit.zkey": 2580, + "verification_key": 2925 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", + "Model:": "85", + "CPU(s):": "96", + "BogoMIPS:": "5400.00", + "L2 cache:": "48 MiB (48 instances)", + "L3 cache:": "66 MiB (2 instances)", + "Stepping:": "4", + "L1d cache:": "1.5 MiB (48 instances)", + "L1i cache:": "1.5 MiB (48 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "46 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", + "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", + "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Core(s) per socket:": "24", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", + "On-line CPU(s) list:": "0,1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41-49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89-95", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88", + "Vulnerability Meltdown:": "Mitigation; PTI", + "Vulnerability Retbleed:": "Mitigation; IBRS", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", + "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": 0, + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0, + "num_wires": 4, + "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", + "witness_compiler": "c++" + }, + { + "circuit_id": "2ca76e72-5afc-45a0-9b97-9238d19743d0", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-13T20:46:44.487Z", + "proving_scheme": "groth16", + "status": "Ready", + "compute_time": "P0DT00H00M07.590935S", + "compute_times": { + "total": 7.668134920299053, + "queued": 27.894738, + "clean_up": 0.0018086303025484085, + "create_cpp": 0.047053029760718346, + "file_setup": 0.23089499771595, + "compile_cpp": 4.629393395036459, + "create_r1cs": 0.011073233559727669, + "save_results": 0.005805622786283493, + "get_r1cs_info": 0.0006980784237384796, + "groth16_setup": 1.3557848315685987, + "export_verification_key": 1.3827202580869198, + "download_trusted_setup_file": 0.002456182613968849 + }, + "file_sizes": { + "total": 225424, + "circuit": 213240, + "total_gb": 0.000225424, + "total_mb": 0.225424, + "circuit.dat": 6176, + "code.tar.gz": 503, + "circuit.zkey": 2580, + "verification_key": 2925 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", + "Model:": "85", + "CPU(s):": "96", + "BogoMIPS:": "5400.00", + "L2 cache:": "48 MiB (48 instances)", + "L3 cache:": "66 MiB (2 instances)", + "Stepping:": "4", + "L1d cache:": "1.5 MiB (48 instances)", + "L1i cache:": "1.5 MiB (48 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "46 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", + "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", + "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Core(s) per socket:": "24", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", + "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", + "Vulnerability Meltdown:": "Mitigation; PTI", + "Vulnerability Retbleed:": "Mitigation; IBRS", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", + "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": 0, + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0, + "num_wires": 4, + "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", + "witness_compiler": "c++" + }, + { + "circuit_id": "a0bdedb8-7a09-4052-abcb-9ed696c686b5", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-13T20:46:44.476Z", + "proving_scheme": "groth16", + "status": "Ready", + "compute_time": "P0DT00H00M07.705396S", + "compute_times": { + "total": 7.776749765500426, + "queued": 19.04132, + "clean_up": 0.0012914035469293594, + "create_cpp": 0.05671204254031181, + "file_setup": 0.2300866860896349, + "compile_cpp": 4.876820022240281, + "create_r1cs": 0.013439206406474113, + "save_results": 0.005176816135644913, + "get_r1cs_info": 0.0005762949585914612, + "groth16_setup": 1.2933933082967997, + "export_verification_key": 1.2968760952353477, + "download_trusted_setup_file": 0.0018088724464178085 + }, + "file_sizes": { + "total": 225450, + "circuit": 213240, + "total_gb": 0.00022545, + "total_mb": 0.22545, + "circuit.dat": 6176, + "code.tar.gz": 529, + "circuit.zkey": 2580, + "verification_key": 2925 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tgz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", + "Model:": "85", + "CPU(s):": "96", + "BogoMIPS:": "5400.00", + "L2 cache:": "48 MiB (48 instances)", + "L3 cache:": "66 MiB (2 instances)", + "Stepping:": "4", + "L1d cache:": "1.5 MiB (48 instances)", + "L1i cache:": "1.5 MiB (48 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "46 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", + "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", + "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Core(s) per socket:": "24", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", + "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", + "Vulnerability Meltdown:": "Mitigation; PTI", + "Vulnerability Retbleed:": "Mitigation; IBRS", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", + "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": 0, + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0, + "num_wires": 4, + "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", + "witness_compiler": "c++" + }, + { + "circuit_id": "190315c4-b855-4630-88bd-ee26cd7d1d01", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-13T19:52:33.385Z", + "proving_scheme": "groth16", + "status": "Ready", + "compute_time": "P0DT00H00M07.572978S", + "compute_times": { + "total": 7.647768121212721, + "queued": 1.189038, + "clean_up": 0.0017464309930801392, + "create_cpp": 0.05523469112813473, + "file_setup": 0.2625980079174042, + "compile_cpp": 4.723205912858248, + "create_r1cs": 0.01834150403738022, + "save_results": 0.005839653313159943, + "get_r1cs_info": 0.0006966739892959595, + "groth16_setup": 1.2872309237718582, + "export_verification_key": 1.2899665106087923, + "download_trusted_setup_file": 0.002456560730934143 + }, + "file_sizes": { + "total": 225417, + "circuit": 213240, + "total_gb": 0.000225417, + "total_mb": 0.225417, + "circuit.dat": 6176, + "code.tar.gz": 496, + "circuit.zkey": 2580, + "verification_key": 2925 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", + "Model:": "85", + "CPU(s):": "96", + "BogoMIPS:": "5400.00", + "L2 cache:": "48 MiB (48 instances)", + "L3 cache:": "66 MiB (2 instances)", + "Stepping:": "4", + "L1d cache:": "1.5 MiB (48 instances)", + "L1i cache:": "1.5 MiB (48 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "46 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", + "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", + "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Core(s) per socket:": "24", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", + "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", + "Vulnerability Meltdown:": "Mitigation; PTI", + "Vulnerability Retbleed:": "Mitigation; IBRS", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", + "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": 0, + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0, + "num_wires": 4, + "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", + "witness_compiler": "c++" + }, + { + "circuit_id": "efd39298-db6a-42ec-8c5c-70624d6b4d20", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-13T19:49:50.186Z", + "proving_scheme": "groth16", + "status": "Ready", + "compute_time": "P0DT00H00M07.544503S", + "compute_times": { + "total": 7.621049035340548, + "queued": 1.213655, + "clean_up": 0.0007674247026443481, + "create_cpp": 0.04509667679667473, + "file_setup": 0.25903115049004555, + "compile_cpp": 4.652491440996528, + "create_r1cs": 0.011222857981920242, + "save_results": 0.004881551489233971, + "get_r1cs_info": 0.0006925370544195175, + "groth16_setup": 1.3327859863638878, + "export_verification_key": 1.3111931774765253, + "download_trusted_setup_file": 0.0024320408701896667 + }, + "file_sizes": { + "total": 225419, + "circuit": 213240, + "total_gb": 0.000225419, + "total_mb": 0.225419, + "circuit.dat": 6176, + "code.tar.gz": 498, + "circuit.zkey": 2580, + "verification_key": 2925 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", + "Model:": "85", + "CPU(s):": "96", + "BogoMIPS:": "5400.00", + "L2 cache:": "48 MiB (48 instances)", + "L3 cache:": "66 MiB (2 instances)", + "Stepping:": "4", + "L1d cache:": "1.5 MiB (48 instances)", + "L1i cache:": "1.5 MiB (48 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "46 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", + "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", + "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Core(s) per socket:": "24", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", + "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", + "Vulnerability Meltdown:": "Mitigation; PTI", + "Vulnerability Retbleed:": "Mitigation; IBRS", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", + "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": 0, + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0, + "num_wires": 4, + "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", + "witness_compiler": "c++" + }, + { + "circuit_id": "ba2f5cd1-96b1-4d9c-b722-5ac460fea6e6", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-13T19:49:05.977Z", + "proving_scheme": "groth16", + "status": "Ready", + "compute_time": "P0DT00H00M07.662052S", + "compute_times": { + "total": 7.7336688078939915, + "queued": 1.123447, + "clean_up": 0.0017930883914232254, + "create_cpp": 0.0463506244122982, + "file_setup": 0.2377893142402172, + "compile_cpp": 4.749906187877059, + "create_r1cs": 0.010152315720915794, + "save_results": 0.0053513552993535995, + "get_r1cs_info": 0.0008222367614507675, + "groth16_setup": 1.3547440730035305, + "export_verification_key": 1.3238158524036407, + "download_trusted_setup_file": 0.002467406913638115 + }, + "file_sizes": { + "total": 225420, + "circuit": 213240, + "total_gb": 0.00022542, + "total_mb": 0.22542, + "circuit.dat": 6176, + "code.tar.gz": 499, + "circuit.zkey": 2580, + "verification_key": 2925 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", + "Model:": "85", + "CPU(s):": "96", + "BogoMIPS:": "5400.00", + "L2 cache:": "48 MiB (48 instances)", + "L3 cache:": "66 MiB (2 instances)", + "Stepping:": "4", + "L1d cache:": "1.5 MiB (48 instances)", + "L1i cache:": "1.5 MiB (48 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "46 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", + "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", + "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Core(s) per socket:": "24", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", + "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", + "Vulnerability Meltdown:": "Mitigation; PTI", + "Vulnerability Retbleed:": "Mitigation; IBRS", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", + "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": 0, + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0, + "num_wires": 4, + "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", + "witness_compiler": "c++" + }, + { + "circuit_id": "8c057b7d-c64d-4059-ab29-9298ad6a2a53", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-13T19:48:26.875Z", + "proving_scheme": "groth16", + "status": "Ready", + "compute_time": "P0DT00H00M07.377793S", + "compute_times": { + "total": 7.45503032207489, + "queued": 1.110193, + "clean_up": 0.0017393846064805984, + "create_cpp": 0.05383708514273167, + "file_setup": 0.24573651514947414, + "compile_cpp": 4.488782860338688, + "create_r1cs": 0.017437485978007317, + "save_results": 0.005972316488623619, + "get_r1cs_info": 0.0006892457604408264, + "groth16_setup": 1.324556514620781, + "export_verification_key": 1.3133248090744019, + "download_trusted_setup_file": 0.002494256943464279 + }, + "file_sizes": { + "total": 225419, + "circuit": 213240, + "total_gb": 0.000225419, + "total_mb": 0.225419, + "circuit.dat": 6176, + "code.tar.gz": 498, + "circuit.zkey": 2580, + "verification_key": 2925 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", + "Model:": "85", + "CPU(s):": "96", + "BogoMIPS:": "5400.00", + "L2 cache:": "48 MiB (48 instances)", + "L3 cache:": "66 MiB (2 instances)", + "Stepping:": "4", + "L1d cache:": "1.5 MiB (48 instances)", + "L1i cache:": "1.5 MiB (48 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "46 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", + "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", + "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Core(s) per socket:": "24", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", + "On-line CPU(s) list:": "0,1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41-49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89-95", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88", + "Vulnerability Meltdown:": "Mitigation; PTI", + "Vulnerability Retbleed:": "Mitigation; IBRS", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", + "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": 0, + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0, + "num_wires": 4, + "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", + "witness_compiler": "c++" + }, + { + "circuit_id": "4c600cdd-f1f9-495d-b445-2221f0a89f46", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-13T19:47:38.396Z", + "proving_scheme": "groth16", + "status": "Ready", + "compute_time": "P0DT00H00M07.635626S", + "compute_times": { + "total": 7.712093740701675, + "queued": 1.199349, + "clean_up": 0.0017684157937765121, + "create_cpp": 0.05451502092182636, + "file_setup": 0.258465563878417, + "compile_cpp": 4.719343299046159, + "create_r1cs": 0.010251201689243317, + "save_results": 0.004460163414478302, + "get_r1cs_info": 0.0008540749549865723, + "groth16_setup": 1.2751929629594088, + "export_verification_key": 1.3843229338526726, + "download_trusted_setup_file": 0.0024193767458200455 + }, + "file_sizes": { + "total": 225419, + "circuit": 213240, + "total_gb": 0.000225419, + "total_mb": 0.225419, + "circuit.dat": 6176, + "code.tar.gz": 498, + "circuit.zkey": 2580, + "verification_key": 2925 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", + "Model:": "85", + "CPU(s):": "96", + "BogoMIPS:": "5400.00", + "L2 cache:": "48 MiB (48 instances)", + "L3 cache:": "66 MiB (2 instances)", + "Stepping:": "4", + "L1d cache:": "1.5 MiB (48 instances)", + "L1i cache:": "1.5 MiB (48 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "46 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", + "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", + "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Core(s) per socket:": "24", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", + "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", + "Vulnerability Meltdown:": "Mitigation; PTI", + "Vulnerability Retbleed:": "Mitigation; IBRS", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", + "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": 0, + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0, + "num_wires": 4, + "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", + "witness_compiler": "c++" + }, + { + "circuit_id": "07f165fe-658f-4f60-9724-e13641c3dc6d", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-13T19:46:38.223Z", + "proving_scheme": "groth16", + "status": "Ready", + "compute_time": "P0DT00H00M08.167119S", + "compute_times": { + "total": 8.251142678782344, + "queued": 1.115337, + "clean_up": 0.0016193389892578125, + "create_cpp": 0.054599540308117867, + "file_setup": 0.25351906940340996, + "compile_cpp": 4.904584679752588, + "create_r1cs": 0.01984476111829281, + "save_results": 0.005771957337856293, + "get_r1cs_info": 0.0008576847612857819, + "groth16_setup": 1.522850263863802, + "export_verification_key": 1.4845417588949203, + "download_trusted_setup_file": 0.002574380487203598 + }, + "file_sizes": { + "total": 225420, + "circuit": 213240, + "total_gb": 0.00022542, + "total_mb": 0.22542, + "circuit.dat": 6176, + "code.tar.gz": 499, + "circuit.zkey": 2580, + "verification_key": 2925 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", + "Model:": "85", + "CPU(s):": "96", + "BogoMIPS:": "5400.00", + "L2 cache:": "48 MiB (48 instances)", + "L3 cache:": "66 MiB (2 instances)", + "Stepping:": "4", + "L1d cache:": "1.5 MiB (48 instances)", + "L1i cache:": "1.5 MiB (48 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "46 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", + "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", + "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Core(s) per socket:": "24", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", + "On-line CPU(s) list:": "0,1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41-49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89-95", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88", + "Vulnerability Meltdown:": "Mitigation; PTI", + "Vulnerability Retbleed:": "Mitigation; IBRS", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", + "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": 0, + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0, + "num_wires": 4, + "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", + "witness_compiler": "c++" + }, + { + "circuit_id": "5184ccc9-d9df-4f4c-85b5-dcc372be2b4b", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-13T19:46:37.738Z", + "proving_scheme": "groth16", + "status": "Ready", + "compute_time": "P0DT00H00M07.800540S", + "compute_times": { + "total": 7.890723425894976, + "queued": 1.168498, + "clean_up": 0.001091672107577324, + "create_cpp": 0.04187995567917824, + "file_setup": 0.27721855975687504, + "compile_cpp": 4.727179424837232, + "create_r1cs": 0.016916383057832718, + "save_results": 0.004303250461816788, + "get_r1cs_info": 0.0007656924426555634, + "groth16_setup": 1.459752507507801, + "export_verification_key": 1.3583893701434135, + "download_trusted_setup_file": 0.002651471644639969 + }, + "file_sizes": { + "total": 225450, + "circuit": 213240, + "total_gb": 0.00022545, + "total_mb": 0.22545, + "circuit.dat": 6176, + "code.tar.gz": 529, + "circuit.zkey": 2580, + "verification_key": 2925 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tgz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", + "Model:": "85", + "CPU(s):": "96", + "BogoMIPS:": "5400.00", + "L2 cache:": "48 MiB (48 instances)", + "L3 cache:": "66 MiB (2 instances)", + "Stepping:": "4", + "L1d cache:": "1.5 MiB (48 instances)", + "L1i cache:": "1.5 MiB (48 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "46 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", + "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", + "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Core(s) per socket:": "24", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", + "On-line CPU(s) list:": "0,1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41-49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89-95", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88", + "Vulnerability Meltdown:": "Mitigation; PTI", + "Vulnerability Retbleed:": "Mitigation; IBRS", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", + "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": 0, + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0, + "num_wires": 4, + "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", + "witness_compiler": "c++" + }, + { + "circuit_id": "cd1787b3-9b68-4c98-b749-10675b93a02d", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-13T19:46:37.375Z", + "proving_scheme": "groth16", + "status": "Ready", + "compute_time": "P0DT00H00M08.090137S", + "compute_times": { + "total": 8.167806182056665, + "queued": 1.338794, + "clean_up": 0.0015265382826328278, + "create_cpp": 0.06242942810058594, + "file_setup": 0.2405807003378868, + "compile_cpp": 5.083120491355658, + "create_r1cs": 0.01758597418665886, + "save_results": 0.004459673538804054, + "get_r1cs_info": 0.0007193218916654587, + "groth16_setup": 1.37510397285223, + "export_verification_key": 1.3791209738701582, + "download_trusted_setup_file": 0.0024771448224782944 + }, + "file_sizes": { + "total": 225424, + "circuit": 213240, + "total_gb": 0.000225424, + "total_mb": 0.225424, + "circuit.dat": 6176, + "code.tar.gz": 503, + "circuit.zkey": 2580, + "verification_key": 2925 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", + "Model:": "85", + "CPU(s):": "96", + "BogoMIPS:": "5400.00", + "L2 cache:": "48 MiB (48 instances)", + "L3 cache:": "66 MiB (2 instances)", + "Stepping:": "4", + "L1d cache:": "1.5 MiB (48 instances)", + "L1i cache:": "1.5 MiB (48 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "46 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", + "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", + "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Core(s) per socket:": "24", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", + "On-line CPU(s) list:": "0,1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41-49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89-95", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88", + "Vulnerability Meltdown:": "Mitigation; PTI", + "Vulnerability Retbleed:": "Mitigation; IBRS", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", + "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": 0, + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0, + "num_wires": 4, + "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", + "witness_compiler": "c++" + }, + { + "circuit_id": "92fce1d2-a24f-436c-8dcb-70128fef75ad", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-13T19:46:37.319Z", + "proving_scheme": "groth16", + "status": "Ready", + "compute_time": "P0DT00H00M07.515638S", + "compute_times": { + "total": 7.592755535617471, + "queued": 1.122921, + "clean_up": 0.0016377829015254974, + "create_cpp": 0.03891022130846977, + "file_setup": 0.24091425351798534, + "compile_cpp": 4.7493694350123405, + "create_r1cs": 0.017042923718690872, + "save_results": 0.005464419722557068, + "get_r1cs_info": 0.0006883256137371063, + "groth16_setup": 1.28771460801363, + "export_verification_key": 1.247961588203907, + "download_trusted_setup_file": 0.0025581959635019302 + }, + "file_sizes": { + "total": 225419, + "circuit": 213240, + "total_gb": 0.000225419, + "total_mb": 0.225419, + "circuit.dat": 6176, + "code.tar.gz": 498, + "circuit.zkey": 2580, + "verification_key": 2925 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", + "Model:": "85", + "CPU(s):": "96", + "BogoMIPS:": "5400.00", + "L2 cache:": "48 MiB (48 instances)", + "L3 cache:": "66 MiB (2 instances)", + "Stepping:": "4", + "L1d cache:": "1.5 MiB (48 instances)", + "L1i cache:": "1.5 MiB (48 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "46 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", + "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", + "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Core(s) per socket:": "24", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", + "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", + "Vulnerability Meltdown:": "Mitigation; PTI", + "Vulnerability Retbleed:": "Mitigation; IBRS", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", + "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": 0, + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0, + "num_wires": 4, + "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", + "witness_compiler": "c++" + }, + { + "circuit_id": "49d24c38-3549-4b6f-a0d0-121d79a9e042", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-13T19:43:21.432Z", + "proving_scheme": "groth16", + "status": "Failed", + "compute_time": "P0DT00H00M00.180365S", + "compute_times": { + "total": 0.2551115155220032, + "queued": 22.187026, + "create_cpp": 0.011886032298207283, + "file_setup": 0.24275113083422184 + }, + "file_sizes": { + "total": 422, + "total_gb": 4.22e-7, + "total_mb": 0.000422, + "code.tar.gz": 422 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", + "Model:": "85", + "CPU(s):": "96", + "BogoMIPS:": "5400.00", + "L2 cache:": "48 MiB (48 instances)", + "L3 cache:": "66 MiB (2 instances)", + "Stepping:": "4", + "L1d cache:": "1.5 MiB (48 instances)", + "L1i cache:": "1.5 MiB (48 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "46 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", + "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", + "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Core(s) per socket:": "24", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", + "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", + "Vulnerability Meltdown:": "Mitigation; PTI", + "Vulnerability Retbleed:": "Mitigation; IBRS", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", + "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": "cmd: circom2 --output /tmp/sindri/circuits/49d24c38-3549-4b6f-a0d0-121d79a9e042_1705175023619519 --c /tmp/sindri/circuits/49d24c38-3549-4b6f-a0d0-121d79a9e042_1705175023619519/code/circuit.circom stdout: stderr: error[P1001]: No main specified in the project structure\n\nprevious errors were found\n", + "curve": "bn254", + "degree": null, + "num_constraints": null, + "num_outputs": null, + "num_private_inputs": null, + "num_public_inputs": null, + "num_wires": null, + "trusted_setup_file": "", + "witness_compiler": "c++" + }, + { + "circuit_id": "be8d26a4-0c1f-4ed8-a9c1-92d821a1023f", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-13T19:43:20.830Z", + "proving_scheme": "groth16", + "status": "Failed", + "compute_time": "P0DT00H00M00.206542S", + "compute_times": { + "total": 0.2807184997946024, + "queued": 21.29796, + "create_cpp": 0.01408509910106659, + "file_setup": 0.26632064767181873 + }, + "file_sizes": { + "total": 454, + "total_gb": 4.54e-7, + "total_mb": 0.000454, + "code.tar.gz": 454 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tgz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", + "Model:": "85", + "CPU(s):": "96", + "BogoMIPS:": "5400.00", + "L2 cache:": "48 MiB (48 instances)", + "L3 cache:": "66 MiB (2 instances)", + "Stepping:": "4", + "L1d cache:": "1.5 MiB (48 instances)", + "L1i cache:": "1.5 MiB (48 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "46 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", + "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", + "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Core(s) per socket:": "24", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", + "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", + "Vulnerability Meltdown:": "Mitigation; PTI", + "Vulnerability Retbleed:": "Mitigation; IBRS", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", + "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": "cmd: circom2 --output /tmp/sindri/circuits/be8d26a4-0c1f-4ed8-a9c1-92d821a1023f_1705175022128513 --c /tmp/sindri/circuits/be8d26a4-0c1f-4ed8-a9c1-92d821a1023f_1705175022128513/code/circuit.circom stdout: stderr: error[P1001]: No main specified in the project structure\n\nprevious errors were found\n", + "curve": "bn254", + "degree": null, + "num_constraints": null, + "num_outputs": null, + "num_private_inputs": null, + "num_public_inputs": null, + "num_wires": null, + "trusted_setup_file": "", + "witness_compiler": "c++" + }, + { + "circuit_id": "829c7fb3-407a-4acb-9048-7052edeaef17", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-13T19:43:20.550Z", + "proving_scheme": "groth16", + "status": "Failed", + "compute_time": "P0DT00H00M00.201628S", + "compute_times": { + "total": 0.2771782800555229, + "queued": 20.013791, + "create_cpp": 0.01300826482474804, + "file_setup": 0.26369262114167213 + }, + "file_sizes": { + "total": 433, + "total_gb": 4.33e-7, + "total_mb": 0.000433, + "code.tar.gz": 433 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", + "Model:": "85", + "CPU(s):": "96", + "BogoMIPS:": "5400.00", + "L2 cache:": "48 MiB (48 instances)", + "L3 cache:": "66 MiB (2 instances)", + "Stepping:": "4", + "L1d cache:": "1.5 MiB (48 instances)", + "L1i cache:": "1.5 MiB (48 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "46 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", + "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", + "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Core(s) per socket:": "24", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", + "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", + "Vulnerability Meltdown:": "Mitigation; PTI", + "Vulnerability Retbleed:": "Mitigation; IBRS", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", + "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": "cmd: circom2 --output /tmp/sindri/circuits/829c7fb3-407a-4acb-9048-7052edeaef17_1705175020564282 --c /tmp/sindri/circuits/829c7fb3-407a-4acb-9048-7052edeaef17_1705175020564282/code/circuit.circom stdout: stderr: error[P1001]: No main specified in the project structure\n\nprevious errors were found\n", + "curve": "bn254", + "degree": null, + "num_constraints": null, + "num_outputs": null, + "num_private_inputs": null, + "num_public_inputs": null, + "num_wires": null, + "trusted_setup_file": "", + "witness_compiler": "c++" + }, + { + "circuit_id": "21254406-f848-4a42-96b1-50ae1a8a70f6", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-13T19:43:20.457Z", + "proving_scheme": "groth16", + "status": "Failed", + "compute_time": "P0DT00H00M00.210927S", + "compute_times": { + "total": 0.28701494075357914, + "queued": 18.586688, + "create_cpp": 0.01276908814907074, + "file_setup": 0.273587292060256 + }, + "file_sizes": { + "total": 423, + "total_gb": 4.23e-7, + "total_mb": 0.000423, + "code.tar.gz": 423 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", + "Model:": "85", + "CPU(s):": "96", + "BogoMIPS:": "5400.00", + "L2 cache:": "48 MiB (48 instances)", + "L3 cache:": "66 MiB (2 instances)", + "Stepping:": "4", + "L1d cache:": "1.5 MiB (48 instances)", + "L1i cache:": "1.5 MiB (48 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "46 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", + "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", + "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Core(s) per socket:": "24", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", + "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", + "Vulnerability Meltdown:": "Mitigation; PTI", + "Vulnerability Retbleed:": "Mitigation; IBRS", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", + "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": "cmd: circom2 --output /tmp/sindri/circuits/21254406-f848-4a42-96b1-50ae1a8a70f6_1705175019044217 --c /tmp/sindri/circuits/21254406-f848-4a42-96b1-50ae1a8a70f6_1705175019044217/code/circuit.circom stdout: stderr: error[P1001]: No main specified in the project structure\n\nprevious errors were found\n", + "curve": "bn254", + "degree": null, + "num_constraints": null, + "num_outputs": null, + "num_private_inputs": null, + "num_public_inputs": null, + "num_wires": null, + "trusted_setup_file": "", + "witness_compiler": "c++" + }, + { + "circuit_id": "86b85f20-069f-4b05-bc19-7dcc45d62d4d", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-13T19:03:40.161Z", + "proving_scheme": "groth16", + "status": "Failed", + "compute_time": "P0DT00H00M00.165028S", + "compute_times": { + "total": 0.23983060009777546, + "queued": 19.426277, + "create_cpp": 0.012881102040410042, + "file_setup": 0.22659419663250446 + }, + "file_sizes": { + "total": 425, + "total_gb": 4.25e-7, + "total_mb": 0.000425, + "code.tar.gz": 425 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", + "Model:": "85", + "CPU(s):": "96", + "BogoMIPS:": "5400.00", + "L2 cache:": "48 MiB (48 instances)", + "L3 cache:": "66 MiB (2 instances)", + "Stepping:": "4", + "L1d cache:": "1.5 MiB (48 instances)", + "L1i cache:": "1.5 MiB (48 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "46 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", + "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", + "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Core(s) per socket:": "24", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", + "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", + "Vulnerability Meltdown:": "Mitigation; PTI", + "Vulnerability Retbleed:": "Mitigation; IBRS", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", + "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": "cmd: circom2 --output /tmp/sindri/circuits/86b85f20-069f-4b05-bc19-7dcc45d62d4d_1705172639587962 --c /tmp/sindri/circuits/86b85f20-069f-4b05-bc19-7dcc45d62d4d_1705172639587962/code/circuit.circom stdout: stderr: error[P1001]: No main specified in the project structure\n\nprevious errors were found\n", + "curve": "bn254", + "degree": null, + "num_constraints": null, + "num_outputs": null, + "num_private_inputs": null, + "num_public_inputs": null, + "num_wires": null, + "trusted_setup_file": "", + "witness_compiler": "c++" + }, + { + "circuit_id": "911d63d1-2d4a-4f13-8ea6-bae46ca597f1", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-13T19:03:39.891Z", + "proving_scheme": "groth16", + "status": "Failed", + "compute_time": "P0DT00H00M00.170545S", + "compute_times": { + "total": 0.24807762540876865, + "queued": 18.378215, + "create_cpp": 0.012938465923070908, + "file_setup": 0.23475164733827114 + }, + "file_sizes": { + "total": 433, + "total_gb": 4.33e-7, + "total_mb": 0.000433, + "code.tar.gz": 433 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", + "Model:": "85", + "CPU(s):": "96", + "BogoMIPS:": "5400.00", + "L2 cache:": "48 MiB (48 instances)", + "L3 cache:": "66 MiB (2 instances)", + "Stepping:": "4", + "L1d cache:": "1.5 MiB (48 instances)", + "L1i cache:": "1.5 MiB (48 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "46 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", + "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", + "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Core(s) per socket:": "24", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", + "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", + "Vulnerability Meltdown:": "Mitigation; PTI", + "Vulnerability Retbleed:": "Mitigation; IBRS", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", + "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": "cmd: circom2 --output /tmp/sindri/circuits/911d63d1-2d4a-4f13-8ea6-bae46ca597f1_1705172638269260 --c /tmp/sindri/circuits/911d63d1-2d4a-4f13-8ea6-bae46ca597f1_1705172638269260/code/circuit.circom stdout: stderr: error[P1001]: No main specified in the project structure\n\nprevious errors were found\n", + "curve": "bn254", + "degree": null, + "num_constraints": null, + "num_outputs": null, + "num_private_inputs": null, + "num_public_inputs": null, + "num_wires": null, + "trusted_setup_file": "", + "witness_compiler": "c++" + }, + { + "circuit_id": "f56ce37c-23ce-4125-ad52-57ccc6feca54", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-13T19:03:39.814Z", + "proving_scheme": "groth16", + "status": "Failed", + "compute_time": "P0DT00H00M00.186595S", + "compute_times": { + "total": 0.26397472620010376, + "queued": 17.084112, + "create_cpp": 0.010645480826497078, + "file_setup": 0.2526652980595827 + }, + "file_sizes": { + "total": 454, + "total_gb": 4.54e-7, + "total_mb": 0.000454, + "code.tar.gz": 454 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tgz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", + "Model:": "85", + "CPU(s):": "96", + "BogoMIPS:": "5400.00", + "L2 cache:": "48 MiB (48 instances)", + "L3 cache:": "66 MiB (2 instances)", + "Stepping:": "4", + "L1d cache:": "1.5 MiB (48 instances)", + "L1i cache:": "1.5 MiB (48 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "46 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", + "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", + "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Core(s) per socket:": "24", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", + "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", + "Vulnerability Meltdown:": "Mitigation; PTI", + "Vulnerability Retbleed:": "Mitigation; IBRS", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", + "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": "cmd: circom2 --output /tmp/sindri/circuits/f56ce37c-23ce-4125-ad52-57ccc6feca54_1705172636898067 --c /tmp/sindri/circuits/f56ce37c-23ce-4125-ad52-57ccc6feca54_1705172636898067/code/circuit.circom stdout: stderr: error[P1001]: No main specified in the project structure\n\nprevious errors were found\n", + "curve": "bn254", + "degree": null, + "num_constraints": null, + "num_outputs": null, + "num_private_inputs": null, + "num_public_inputs": null, + "num_wires": null, + "trusted_setup_file": "", + "witness_compiler": "c++" + }, + { + "circuit_id": "593763cb-5ee6-4f17-86f0-92e33db49ebc", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-13T18:50:50.705Z", + "proving_scheme": "groth16", + "status": "Failed", + "compute_time": "P0DT00H00M00.198660S", + "compute_times": { + "total": 0.2762124240398407, + "queued": 2.350508, + "create_cpp": 0.013621769845485687, + "file_setup": 0.26214288361370564 + }, + "file_sizes": { + "total": 425, + "total_gb": 4.25e-7, + "total_mb": 0.000425, + "code.tar.gz": 425 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", + "Model:": "85", + "CPU(s):": "96", + "BogoMIPS:": "5400.00", + "L2 cache:": "48 MiB (48 instances)", + "L3 cache:": "66 MiB (2 instances)", + "Stepping:": "4", + "L1d cache:": "1.5 MiB (48 instances)", + "L1i cache:": "1.5 MiB (48 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "46 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", + "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", + "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Core(s) per socket:": "24", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", + "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", + "Vulnerability Meltdown:": "Mitigation; PTI", + "Vulnerability Retbleed:": "Mitigation; IBRS", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", + "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": "cmd: circom2 --output /tmp/sindri/circuits/593763cb-5ee6-4f17-86f0-92e33db49ebc_1705171853056248 --c /tmp/sindri/circuits/593763cb-5ee6-4f17-86f0-92e33db49ebc_1705171853056248/code/circuit.circom stdout: stderr: error[P1001]: No main specified in the project structure\n\nprevious errors were found\n", + "curve": "bn254", + "degree": null, + "num_constraints": null, + "num_outputs": null, + "num_private_inputs": null, + "num_public_inputs": null, + "num_wires": null, + "trusted_setup_file": "", + "witness_compiler": "c++" + }, + { + "circuit_id": "616d59a2-ede9-4aa2-b309-dceaad83f85c", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-13T18:50:50.409Z", + "proving_scheme": "groth16", + "status": "Failed", + "compute_time": "P0DT00H00M00.202851S", + "compute_times": { + "total": 0.27938831970095634, + "queued": 1.181081, + "create_cpp": 0.020855069160461426, + "file_setup": 0.25791895017027855 + }, + "file_sizes": { + "total": 454, + "total_gb": 4.54e-7, + "total_mb": 0.000454, + "code.tar.gz": 454 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tgz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", + "Model:": "85", + "CPU(s):": "96", + "BogoMIPS:": "5400.00", + "L2 cache:": "48 MiB (48 instances)", + "L3 cache:": "66 MiB (2 instances)", + "Stepping:": "4", + "L1d cache:": "1.5 MiB (48 instances)", + "L1i cache:": "1.5 MiB (48 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "46 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", + "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", + "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Core(s) per socket:": "24", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", + "On-line CPU(s) list:": "0,1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41-49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89-95", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88", + "Vulnerability Meltdown:": "Mitigation; PTI", + "Vulnerability Retbleed:": "Mitigation; IBRS", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", + "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": "cmd: circom2 --output /tmp/sindri/circuits/616d59a2-ede9-4aa2-b309-dceaad83f85c_1705171851590200 --c /tmp/sindri/circuits/616d59a2-ede9-4aa2-b309-dceaad83f85c_1705171851590200/code/circuit.circom stdout: stderr: error[P1001]: No main specified in the project structure\n\nprevious errors were found\n", + "curve": "bn254", + "degree": null, + "num_constraints": null, + "num_outputs": null, + "num_private_inputs": null, + "num_public_inputs": null, + "num_wires": null, + "trusted_setup_file": "", + "witness_compiler": "c++" + }, + { + "circuit_id": "3edc6e19-5c08-43d0-b4cd-1effce92610f", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-13T18:50:50.347Z", + "proving_scheme": "groth16", + "status": "Failed", + "compute_time": "P0DT00H00M00.203065S", + "compute_times": { + "total": 0.2812246270477772, + "queued": 1.181141, + "create_cpp": 0.013465851545333862, + "file_setup": 0.26729494892060757 + }, + "file_sizes": { + "total": 433, + "total_gb": 4.33e-7, + "total_mb": 0.000433, + "code.tar.gz": 433 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", + "Model:": "85", + "CPU(s):": "96", + "BogoMIPS:": "5400.00", + "L2 cache:": "48 MiB (48 instances)", + "L3 cache:": "66 MiB (2 instances)", + "Stepping:": "4", + "L1d cache:": "1.5 MiB (48 instances)", + "L1i cache:": "1.5 MiB (48 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "46 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", + "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", + "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Core(s) per socket:": "24", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", + "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", + "Vulnerability Meltdown:": "Mitigation; PTI", + "Vulnerability Retbleed:": "Mitigation; IBRS", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", + "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": "cmd: circom2 --output /tmp/sindri/circuits/3edc6e19-5c08-43d0-b4cd-1effce92610f_1705171851528535 --c /tmp/sindri/circuits/3edc6e19-5c08-43d0-b4cd-1effce92610f_1705171851528535/code/circuit.circom stdout: stderr: error[P1001]: No main specified in the project structure\n\nprevious errors were found\n", + "curve": "bn254", + "degree": null, + "num_constraints": null, + "num_outputs": null, + "num_private_inputs": null, + "num_public_inputs": null, + "num_wires": null, + "trusted_setup_file": "", + "witness_compiler": "c++" + }, + { + "circuit_id": "04ee9cfb-e70c-4f63-980f-1a3e93548c00", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-13T18:48:36.434Z", + "proving_scheme": "groth16", + "status": "Failed", + "compute_time": "P0DT00H00M00.201733S", + "compute_times": { + "total": 0.27434095926582813, + "queued": 18.015267, + "create_cpp": 0.012987535446882248, + "file_setup": 0.26098530925810337 + }, + "file_sizes": { + "total": 424, + "total_gb": 4.24e-7, + "total_mb": 0.000424, + "code.tar.gz": 424 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", + "Model:": "85", + "CPU(s):": "96", + "BogoMIPS:": "5400.00", + "L2 cache:": "48 MiB (48 instances)", + "L3 cache:": "66 MiB (2 instances)", + "Stepping:": "4", + "L1d cache:": "1.5 MiB (48 instances)", + "L1i cache:": "1.5 MiB (48 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "46 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", + "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", + "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Core(s) per socket:": "24", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", + "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", + "Vulnerability Meltdown:": "Mitigation; PTI", + "Vulnerability Retbleed:": "Mitigation; IBRS", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", + "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": "cmd: circom2 --output /tmp/sindri/circuits/04ee9cfb-e70c-4f63-980f-1a3e93548c00_1705171734449938 --c /tmp/sindri/circuits/04ee9cfb-e70c-4f63-980f-1a3e93548c00_1705171734449938/code/circuit.circom stdout: stderr: error[P1001]: No main specified in the project structure\n\nprevious errors were found\n", + "curve": "bn254", + "degree": null, + "num_constraints": null, + "num_outputs": null, + "num_private_inputs": null, + "num_public_inputs": null, + "num_wires": null, + "trusted_setup_file": "", + "witness_compiler": "c++" + }, + { + "circuit_id": "7bec40b6-96f9-4297-8387-28b69e6eb9f2", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-13T18:48:36.388Z", + "proving_scheme": "groth16", + "status": "Failed", + "compute_time": "P0DT00H00M00.202297S", + "compute_times": { + "total": 0.277168694883585, + "queued": 16.341514, + "create_cpp": 0.013526827096939087, + "file_setup": 0.2629995346069336 + }, + "file_sizes": { + "total": 454, + "total_gb": 4.54e-7, + "total_mb": 0.000454, + "code.tar.gz": 454 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tgz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", + "Model:": "85", + "CPU(s):": "96", + "BogoMIPS:": "5400.00", + "L2 cache:": "48 MiB (48 instances)", + "L3 cache:": "66 MiB (2 instances)", + "Stepping:": "4", + "L1d cache:": "1.5 MiB (48 instances)", + "L1i cache:": "1.5 MiB (48 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "46 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", + "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", + "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Core(s) per socket:": "24", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", + "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", + "Vulnerability Meltdown:": "Mitigation; PTI", + "Vulnerability Retbleed:": "Mitigation; IBRS", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", + "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": "cmd: circom2 --output /tmp/sindri/circuits/7bec40b6-96f9-4297-8387-28b69e6eb9f2_1705171732729882 --c /tmp/sindri/circuits/7bec40b6-96f9-4297-8387-28b69e6eb9f2_1705171732729882/code/circuit.circom stdout: stderr: error[P1001]: No main specified in the project structure\n\nprevious errors were found\n", + "curve": "bn254", + "degree": null, + "num_constraints": null, + "num_outputs": null, + "num_private_inputs": null, + "num_public_inputs": null, + "num_wires": null, + "trusted_setup_file": "", + "witness_compiler": "c++" + }, + { + "circuit_id": "bd2a2cab-9b46-4d8f-abe7-c70543cb3c05", + "circuit_name": "circom", + "circuit_type": "circom", + "date_created": "2024-01-13T18:10:06.690Z", + "proving_scheme": "groth16", + "status": "Ready", + "compute_time": "P0DT00H00M08.109980S", + "compute_times": { + "total": 8.184498570859432, + "queued": 15.479573, + "clean_up": 0.011767888441681862, + "create_cpp": 0.07400684803724289, + "file_setup": 0.291596170514822, + "compile_cpp": 5.010360641404986, + "create_r1cs": 0.03274575620889664, + "save_results": 0.005458444356918335, + "get_r1cs_info": 0.0007813666015863419, + "groth16_setup": 1.3319661114364862, + "export_verification_key": 1.4227301441133022, + "download_trusted_setup_file": 0.0024998728185892105 + }, + "file_sizes": { + "total": 1719978, + "circuit": 221992, + "total_gb": 0.001719978, + "total_mb": 1.719978, + "circuit.dat": 6264, + "code.tar.gz": 1485241, + "circuit.zkey": 3376, + "verification_key": 3105 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom.tar.gz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", + "Model:": "85", + "CPU(s):": "96", + "BogoMIPS:": "5400.00", + "L2 cache:": "48 MiB (48 instances)", + "L3 cache:": "66 MiB (2 instances)", + "Stepping:": "4", + "L1d cache:": "1.5 MiB (48 instances)", + "L1i cache:": "1.5 MiB (48 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "46 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", + "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", + "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Core(s) per socket:": "24", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", + "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", + "Vulnerability Meltdown:": "Mitigation; PTI", + "Vulnerability Retbleed:": "Mitigation; IBRS", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", + "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": 1, + "num_constraints": 2, + "num_outputs": 1, + "num_private_inputs": 1, + "num_public_inputs": 1, + "num_wires": 5, + "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", + "witness_compiler": "c++" + }, + { + "circuit_id": "36d8c583-a7a7-409f-802f-9e2176488114", + "circuit_name": "circom", + "circuit_type": "circom", + "date_created": "2024-01-12T20:17:55.601Z", + "proving_scheme": "groth16", + "status": "Ready", + "compute_time": "P0DT00H00M07.845599S", + "compute_times": { + "total": 7.926630346104503, + "queued": 21.751844, + "clean_up": 0.009552665054798126, + "create_cpp": 0.06667437590658665, + "file_setup": 0.3097714204341173, + "compile_cpp": 4.566421199589968, + "create_r1cs": 0.03019201196730137, + "save_results": 0.0054127369076013565, + "get_r1cs_info": 0.0007427893579006195, + "groth16_setup": 1.4206766039133072, + "export_verification_key": 1.5140666011720896, + "download_trusted_setup_file": 0.00251016765832901 + }, + "file_sizes": { + "total": 1719951, + "circuit": 221992, + "total_gb": 0.001719951, + "total_mb": 1.719951, + "circuit.dat": 6264, + "code.tar.gz": 1485214, + "circuit.zkey": 3376, + "verification_key": 3105 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom.tar.gz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", + "Model:": "85", + "CPU(s):": "96", + "BogoMIPS:": "5400.00", + "L2 cache:": "48 MiB (48 instances)", + "L3 cache:": "66 MiB (2 instances)", + "Stepping:": "4", + "L1d cache:": "1.5 MiB (48 instances)", + "L1i cache:": "1.5 MiB (48 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "46 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", + "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", + "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Core(s) per socket:": "24", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", + "On-line CPU(s) list:": "0,1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41-49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89-95", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88", + "Vulnerability Meltdown:": "Mitigation; PTI", + "Vulnerability Retbleed:": "Mitigation; IBRS", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", + "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": 1, + "num_constraints": 2, + "num_outputs": 1, + "num_private_inputs": 1, + "num_public_inputs": 1, + "num_wires": 5, + "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", + "witness_compiler": "c++" + } + ], + "rawHeaders": [ + "Content-Length", + "1132783", + "Content-Type", + "application/json; charset=utf-8", + "Date", + "Mon, 15 Jan 2024 13:31:25 GMT", + "Referrer-Policy", + "same-origin", + "Server", + "gunicorn", + "Vary", + "Cookie, origin", + "X-Content-Type-Options", + "nosniff", + "X-Frame-Options", + "SAMEORIGIN", + "Connection", + "close" + ], + "responseIsBinary": false + }, + { + "scope": "https://sindri.app:443", + "method": "POST", + "path": "/api/v1/circuit/create", + "body": "2d2d2d2d2d2d5765624b6974466f726d426f756e64617279306275513864364568576373395839640d0a436f6e74656e742d446973706f736974696f6e3a20666f726d2d646174613b206e616d653d2274616773220d0a0d0a66726f6d2d66696c652d61727261790d0a2d2d2d2d2d2d5765624b6974466f726d426f756e64617279306275513864364568576373395839640d0a436f6e74656e742d446973706f736974696f6e3a20666f726d2d646174613b206e616d653d2266696c6573223b2066696c656e616d653d22636972636f6d2d6d756c7469706c696572322e7461722e677a220d0a436f6e74656e742d547970653a206170706c69636174696f6e2f6f637465742d73747265616d0d0a0d0a1f8b0800800092650003edd3bd6edb30100060cf7a8a83d0c176625196141bb0eb295d33252f40d38cc5562209f2e4a008faeea57e9c7f20056ab81dee5b24dd89a428de09e584a9677553a1b295922e6322841a8589e852a3bf9706cbe5b2bb066fafe962998fe6c5555114699ab5f17991e7c508d213acfda9c6237700e758ea7f641ddfd71cfab3862c4993741d456c1add95cac3500a80b2b6154709a294e287072c398200d5de4938168fe0a88c06730f1cb8dec136896e4de38484f10d77a284797609599ae593154425a2f52bc67646f8a1d41265d85e222abd9fb5a78272c71e9cea9e872ff1ec4f0786b055d5eba1530610454f9bb9792e7a184fe0b14d020063f04d8a8abba7ed78b5d7bcf2497821e4fb2750da36087cfd4170fb3a681a6ca362fdbcc0b5d11e1d571a8fb30af8bad9841f37ed47ff8aa27607464b8d50871761f3f27bc793757492f317effbdf2bbd732af9ee8d3ec9129ff67f9e656ffa3f5f140beaff73780cb5177ff1a1af6b1eaf203e76d75004dc5ac6ad6287f91099d55cab7be971d68fe9ca24be6c67d1bc96ed14ef4baacf0f7d78f7d3be786d4835eed005b73abb2afa9875e610daf7b65da6cbed9dc172bee8b30f0ab5f4febaeb72e9ba092f2ee2d037fffa8f12420821841042082184104208218410420821849cd76f0d0ac6f3002800000d0a2d2d2d2d2d2d5765624b6974466f726d426f756e64617279306275513864364568576373395839642d2d0d0a0d0a", + "status": 201, + "response": { + "circuit_id": "4e4d2d46-51d3-4194-b234-bdbb6a4f90fa", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-15T13:31:24.753Z", + "proving_scheme": "groth16", + "status": "Queued", + "compute_time": null, + "compute_times": null, + "file_sizes": { + "code.tar.gz": 497, + "total": 497, + "total_mb": 0.000497, + "total_gb": 4.97e-7 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "worker_hardware": null, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": null, + "num_constraints": null, + "num_outputs": null, + "num_private_inputs": null, + "num_public_inputs": null, + "num_wires": null, + "trusted_setup_file": "", + "witness_compiler": "c++" + }, + "rawHeaders": [ + "Content-Length", + "750", + "Content-Type", + "application/json; charset=utf-8", + "Date", + "Mon, 15 Jan 2024 13:31:25 GMT", + "Referrer-Policy", + "same-origin", + "Server", + "gunicorn", + "Vary", + "Cookie, origin", + "X-Content-Type-Options", + "nosniff", + "X-Frame-Options", + "SAMEORIGIN", + "Connection", + "close" + ], + "responseIsBinary": false + }, + { + "scope": "https://sindri.app:443", + "method": "POST", + "path": "/api/v1/circuit/create", + "body": "2d2d2d2d2d2d5765624b6974466f726d426f756e64617279306275513864364568576373395839640d0a436f6e74656e742d446973706f736974696f6e3a20666f726d2d646174613b206e616d653d2274616773220d0a0d0a66726f6d2d6469726563746f72790d0a2d2d2d2d2d2d5765624b6974466f726d426f756e64617279306275513864364568576373395839640d0a436f6e74656e742d446973706f736974696f6e3a20666f726d2d646174613b206e616d653d2266696c6573223b2066696c656e616d653d22636972636f6d2d6d756c7469706c696572322e7461722e677a220d0a436f6e74656e742d547970653a206170706c69636174696f6e2f6f637465742d73747265616d0d0a0d0a1f8b0800000000000003ed534d6f1b2110f5797fc5c8eac176e285c5bb1bc9ae4fe935a7e40f604cbcb4bb8060d65115f5bf97fdb0b3915ba5922db595fc2ec09b6180e13da19c30d5bcaa4b54b654d2312202552b8c451b1a9d0f4a699ea610c6e42ea3cd48294bbbb189dd2d6094a45996d09c66391d85b43c0f1cbdc0d91fa2f6c85db8cab975bab7c071fc0730ece9703e84757c5771e8fe1a584c63ba8a22328b9e0ae5a19702a0ac6cc9518228a4f8e6010b8e204035330907f1088eca6830cfc081eb2d6ce2e8d1d44e48983c70270a48d82d30ca16d3254405a2f54b42b646f85e6ab13264271195decd9b5f41b9252f4eb5ebfe269efce9c6405b55bedf3a230051747cccc39be8613285d726080084c017294aee8ecff16aa779e9e39010e2dd0a94b635025ffd82dcbc274d8d0d2b566f07dc1bedd171a5f15055c0e7f53a346ed6edfe1145cd0b8c961aa10a89b01ede77325d4517d18838f5bf577aeb54fcd51b7d91233ef2ff82b113ff337af5ffd9e87b9ab13cfdadff5f83f6c69f7cf075c5c74b181fdcd58b805b4bb855649ff4ccbce25a3d4b8ff36e4f2b93f16d5345f34a36254e25d5c57b1f3e7db783b43e54bb7d4b6e34cbd28eb3ceec837d1f9b63dad8ce192c92bc8bbe28d4d2fbfbd6e5d2b5056f6ec6c1377fa9d9575c71c515ff197e02b188ade6000c00000d0a2d2d2d2d2d2d5765624b6974466f726d426f756e64617279306275513864364568576373395839642d2d0d0a0d0a", + "status": 201, + "response": { + "circuit_id": "4cb330c7-66c6-4cf5-a68f-c4ef96ac9f2f", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-15T13:31:24.744Z", + "proving_scheme": "groth16", + "status": "Queued", + "compute_time": null, + "compute_times": null, + "file_sizes": { + "code.tar.gz": 499, + "total": 499, + "total_mb": 0.000499, + "total_gb": 4.99e-7 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "worker_hardware": null, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": null, + "num_constraints": null, + "num_outputs": null, + "num_private_inputs": null, + "num_public_inputs": null, + "num_wires": null, + "trusted_setup_file": "", + "witness_compiler": "c++" + }, + "rawHeaders": [ + "Content-Length", + "750", + "Content-Type", + "application/json; charset=utf-8", + "Date", + "Mon, 15 Jan 2024 13:31:25 GMT", + "Referrer-Policy", + "same-origin", + "Server", + "gunicorn", + "Vary", + "Cookie, origin", + "X-Content-Type-Options", + "nosniff", + "X-Frame-Options", + "SAMEORIGIN", + "Connection", + "close" + ], + "responseIsBinary": false + }, + { + "scope": "https://sindri.app:443", + "method": "GET", + "path": "/api/v1/proof/list?include_proof_input=false&include_proof=false&include_public=false&include_verification_key=false", + "body": "", + "status": 200, + "response": [ + { + "proof_id": "a0cd0c31-178d-40ab-befd-56240cfac47b", + "circuit_name": "circom-multiplier2", + "circuit_id": "ddd1b9a9-83e6-41d1-8936-3bff88aa6921", + "circuit_type": "circom", + "date_created": "2024-01-15T13:29:36.311Z", + "perform_verify": false, + "status": "Ready", + "compute_time": "P0DT00H00M02.092256S", + "compute_times": { + "prove": 0.36259699426591396, + "total": 2.1656957883387804, + "queued": 5.830407, + "clean_up": 0.0003967471420764923, + "file_setup": 0.6623526718467474, + "save_results": 0.18246298655867577, + "generate_witness_c": 0.9574985150247812 + }, + "file_sizes": { + "proof": 705, + "total": 711, + "public": 6, + "total_gb": 7.11e-7, + "total_mb": 0.000711 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "proof_input": null, + "proof": null, + "prover_implementation": { + "name": "GPU Tachyonic", + "smbc": 6, + "smcurve": "spparkx.alt_bn128", + "smreplicate": false + }, + "public": null, + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nopl nonstop_tsc cpuid extd_apicid aperfmperf rapl pni pclmulqdq monitor ssse3 fma cx16 pcid sse4_1 sse4_2 movbe popcnt aes xsave avx f16c rdrand lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt tce topoext perfctr_core perfctr_nb bpext perfctr_llc mwaitx cpb cat_l3 cdp_l3 invpcid_single hw_pstate ssbd mba ibrs ibpb stibp vmmcall fsgsbase bmi1 avx2 smep bmi2 invpcid cqm rdt_a rdseed adx smap clflushopt clwb sha_ni xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local clzero irperf xsaveerptr rdpru wbnoinvd amd_ppin brs arat npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold v_vmsave_vmload vgif v_spec_ctrl umip pku ospke vaes vpclmulqdq rdpid overflow_recov succor smca", + "Model:": "1", + "CPU(s):": "128", + "BogoMIPS:": "5190.16", + "L2 cache:": "32 MiB (64 instances)", + "L3 cache:": "256 MiB (8 instances)", + "Stepping:": "1", + "L1d cache:": "2 MiB (64 instances)", + "L1i cache:": "2 MiB (64 instances)", + "Socket(s):": "2", + "Vendor ID:": "AuthenticAMD", + "Byte Order:": "Little Endian", + "CPU family:": "25", + "Model name:": "AMD EPYC 7513 32-Core Processor", + "CPU max MHz:": "3681.6399", + "CPU min MHz:": "1500.0000", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "48 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "AMD-V", + "Frequency boost:": "enabled", + "NUMA node0 CPU(s):": "0-31,64-95", + "NUMA node1 CPU(s):": "32-63,96-127", + "Vulnerability Mds:": "Not affected", + "Core(s) per socket:": "32", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Not affected", + "On-line CPU(s) list:": "0,2-4,6-31,35-64,66-68,70-95,99-127", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "1,5,32-34,65,69,96-98", + "Vulnerability Meltdown:": "Not affected", + "Vulnerability Retbleed:": "Not affected", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; Retpolines, IBPB conditional, IBRS_FW, STIBP always-on, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "Not affected", + "Vulnerability Mmio stale data:": "Not affected", + "Vulnerability Tsx async abort:": "Not affected", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [ + { + "id": 0, + "name": "NVIDIA RTX A6000", + "uuid": "GPU-bfa26f0f-c563-4d7b-2157-ca283ea42f01", + "driver": "525.125.06", + "serial": "1325121022674", + "memory_total_MiB": 49140 + } + ], + "num_gpus": 1 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null + }, + { + "proof_id": "7a40011c-8526-4c26-a0ac-d9666885eaf0", + "circuit_name": "circom-multiplier2", + "circuit_id": "96444cdd-027c-4c3f-a682-4e72d16bf3a5", + "circuit_type": "circom", + "date_created": "2024-01-15T13:29:34.880Z", + "perform_verify": false, + "status": "Ready", + "compute_time": "P0DT00H00M03.002676S", + "compute_times": { + "prove": 0.40854700468480587, + "total": 3.068965345621109, + "queued": 2.266619, + "clean_up": 0.00030806101858615875, + "file_setup": 0.7846233639866114, + "save_results": 0.18261023424565792, + "generate_witness_c": 1.6924956049770117 + }, + "file_sizes": { + "proof": 706, + "total": 712, + "public": 6, + "total_gb": 7.12e-7, + "total_mb": 0.000712 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "proof_input": null, + "proof": null, + "prover_implementation": { + "name": "GPU Tachyonic", + "smbc": 6, + "smcurve": "spparkx.alt_bn128", + "smreplicate": false + }, + "public": null, + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nopl nonstop_tsc cpuid extd_apicid aperfmperf rapl pni pclmulqdq monitor ssse3 fma cx16 pcid sse4_1 sse4_2 movbe popcnt aes xsave avx f16c rdrand lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt tce topoext perfctr_core perfctr_nb bpext perfctr_llc mwaitx cpb cat_l3 cdp_l3 invpcid_single hw_pstate ssbd mba ibrs ibpb stibp vmmcall fsgsbase bmi1 avx2 smep bmi2 invpcid cqm rdt_a rdseed adx smap clflushopt clwb sha_ni xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local clzero irperf xsaveerptr rdpru wbnoinvd amd_ppin brs arat npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold v_vmsave_vmload vgif v_spec_ctrl umip pku ospke vaes vpclmulqdq rdpid overflow_recov succor smca", + "Model:": "1", + "CPU(s):": "128", + "BogoMIPS:": "5190.16", + "L2 cache:": "32 MiB (64 instances)", + "L3 cache:": "256 MiB (8 instances)", + "Stepping:": "1", + "L1d cache:": "2 MiB (64 instances)", + "L1i cache:": "2 MiB (64 instances)", + "Socket(s):": "2", + "Vendor ID:": "AuthenticAMD", + "Byte Order:": "Little Endian", + "CPU family:": "25", + "Model name:": "AMD EPYC 7513 32-Core Processor", + "CPU max MHz:": "3681.6399", + "CPU min MHz:": "1500.0000", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "48 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "AMD-V", + "Frequency boost:": "enabled", + "NUMA node0 CPU(s):": "0-31,64-95", + "NUMA node1 CPU(s):": "32-63,96-127", + "Vulnerability Mds:": "Not affected", + "Core(s) per socket:": "32", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Not affected", + "On-line CPU(s) list:": "0,2-4,6-31,35-64,66-68,70-95,99-127", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "1,5,32-34,65,69,96-98", + "Vulnerability Meltdown:": "Not affected", + "Vulnerability Retbleed:": "Not affected", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; Retpolines, IBPB conditional, IBRS_FW, STIBP always-on, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "Not affected", + "Vulnerability Mmio stale data:": "Not affected", + "Vulnerability Tsx async abort:": "Not affected", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [ + { + "id": 0, + "name": "NVIDIA RTX A6000", + "uuid": "GPU-bfa26f0f-c563-4d7b-2157-ca283ea42f01", + "driver": "525.125.06", + "serial": "1325121022674", + "memory_total_MiB": 49140 + } + ], + "num_gpus": 1 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null + }, + { + "proof_id": "c3ba6384-7192-4ae6-8b0e-98ce27631011", + "circuit_name": "circom-multiplier2", + "circuit_id": "7ef187a6-8c98-453b-8a71-a9eaaecc0e34", + "circuit_type": "circom", + "date_created": "2024-01-15T13:29:30.819Z", + "perform_verify": false, + "status": "Ready", + "compute_time": "P0DT00H00M03.202003S", + "compute_times": { + "prove": 0.46431767754256725, + "total": 3.2886892426759005, + "queued": 1.201985, + "clean_up": 0.0002929028123617172, + "file_setup": 0.8507254235446453, + "save_results": 0.18203313648700714, + "generate_witness_c": 1.7910168208181858 + }, + "file_sizes": { + "proof": 709, + "total": 715, + "public": 6, + "total_gb": 7.15e-7, + "total_mb": 0.000715 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "proof_input": null, + "proof": null, + "prover_implementation": { + "name": "GPU Tachyonic", + "smbc": 6, + "smcurve": "spparkx.alt_bn128", + "smreplicate": false + }, + "public": null, + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nopl nonstop_tsc cpuid extd_apicid aperfmperf rapl pni pclmulqdq monitor ssse3 fma cx16 pcid sse4_1 sse4_2 movbe popcnt aes xsave avx f16c rdrand lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt tce topoext perfctr_core perfctr_nb bpext perfctr_llc mwaitx cpb cat_l3 cdp_l3 invpcid_single hw_pstate ssbd mba ibrs ibpb stibp vmmcall fsgsbase bmi1 avx2 smep bmi2 invpcid cqm rdt_a rdseed adx smap clflushopt clwb sha_ni xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local clzero irperf xsaveerptr rdpru wbnoinvd amd_ppin brs arat npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold v_vmsave_vmload vgif v_spec_ctrl umip pku ospke vaes vpclmulqdq rdpid overflow_recov succor smca", + "Model:": "1", + "CPU(s):": "128", + "BogoMIPS:": "5190.16", + "L2 cache:": "32 MiB (64 instances)", + "L3 cache:": "256 MiB (8 instances)", + "Stepping:": "1", + "L1d cache:": "2 MiB (64 instances)", + "L1i cache:": "2 MiB (64 instances)", + "Socket(s):": "2", + "Vendor ID:": "AuthenticAMD", + "Byte Order:": "Little Endian", + "CPU family:": "25", + "Model name:": "AMD EPYC 7513 32-Core Processor", + "CPU max MHz:": "3681.6399", + "CPU min MHz:": "1500.0000", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "48 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "AMD-V", + "Frequency boost:": "enabled", + "NUMA node0 CPU(s):": "0-31,64-95", + "NUMA node1 CPU(s):": "32-63,96-127", + "Vulnerability Mds:": "Not affected", + "Core(s) per socket:": "32", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Not affected", + "On-line CPU(s) list:": "0,2-4,6-31,35-64,66-68,70-95,99-127", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "1,5,32-34,65,69,96-98", + "Vulnerability Meltdown:": "Not affected", + "Vulnerability Retbleed:": "Not affected", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; Retpolines, IBPB conditional, IBRS_FW, STIBP always-on, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "Not affected", + "Vulnerability Mmio stale data:": "Not affected", + "Vulnerability Tsx async abort:": "Not affected", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [ + { + "id": 0, + "name": "NVIDIA RTX A6000", + "uuid": "GPU-bfa26f0f-c563-4d7b-2157-ca283ea42f01", + "driver": "525.125.06", + "serial": "1325121022674", + "memory_total_MiB": 49140 + } + ], + "num_gpus": 1 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null + }, + { + "proof_id": "ab24f58c-fd8c-4d6b-afb9-6fe8bc786b4a", + "circuit_name": "circom-multiplier2", + "circuit_id": "24294db3-7afa-418b-bf0d-1243f5886a87", + "circuit_type": "circom", + "date_created": "2024-01-15T13:29:09.850Z", + "perform_verify": false, + "status": "Ready", + "compute_time": "P0DT00H00M03.165555S", + "compute_times": { + "prove": 0.39277893863618374, + "total": 3.2604714408516884, + "queued": 1.166733, + "clean_up": 0.000250350683927536, + "file_setup": 0.9157394412904978, + "save_results": 0.1821883488446474, + "generate_witness_c": 1.7691551242023706 + }, + "file_sizes": { + "proof": 708, + "total": 714, + "public": 6, + "total_gb": 7.14e-7, + "total_mb": 0.000714 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "proof_input": null, + "proof": null, + "prover_implementation": { + "name": "GPU Tachyonic", + "smbc": 6, + "smcurve": "spparkx.alt_bn128", + "smreplicate": false + }, + "public": null, + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nopl nonstop_tsc cpuid extd_apicid aperfmperf rapl pni pclmulqdq monitor ssse3 fma cx16 pcid sse4_1 sse4_2 movbe popcnt aes xsave avx f16c rdrand lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt tce topoext perfctr_core perfctr_nb bpext perfctr_llc mwaitx cpb cat_l3 cdp_l3 invpcid_single hw_pstate ssbd mba ibrs ibpb stibp vmmcall fsgsbase bmi1 avx2 smep bmi2 invpcid cqm rdt_a rdseed adx smap clflushopt clwb sha_ni xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local clzero irperf xsaveerptr rdpru wbnoinvd amd_ppin brs arat npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold v_vmsave_vmload vgif v_spec_ctrl umip pku ospke vaes vpclmulqdq rdpid overflow_recov succor smca", + "Model:": "1", + "CPU(s):": "128", + "BogoMIPS:": "5190.16", + "L2 cache:": "32 MiB (64 instances)", + "L3 cache:": "256 MiB (8 instances)", + "Stepping:": "1", + "L1d cache:": "2 MiB (64 instances)", + "L1i cache:": "2 MiB (64 instances)", + "Socket(s):": "2", + "Vendor ID:": "AuthenticAMD", + "Byte Order:": "Little Endian", + "CPU family:": "25", + "Model name:": "AMD EPYC 7513 32-Core Processor", + "CPU max MHz:": "3681.6399", + "CPU min MHz:": "1500.0000", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "48 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "AMD-V", + "Frequency boost:": "enabled", + "NUMA node0 CPU(s):": "0-31,64-95", + "NUMA node1 CPU(s):": "32-63,96-127", + "Vulnerability Mds:": "Not affected", + "Core(s) per socket:": "32", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Not affected", + "On-line CPU(s) list:": "0,2-4,6-31,35-64,66-68,70-95,99-127", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "1,5,32-34,65,69,96-98", + "Vulnerability Meltdown:": "Not affected", + "Vulnerability Retbleed:": "Not affected", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; Retpolines, IBPB conditional, IBRS_FW, STIBP always-on, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "Not affected", + "Vulnerability Mmio stale data:": "Not affected", + "Vulnerability Tsx async abort:": "Not affected", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [ + { + "id": 0, + "name": "NVIDIA RTX A6000", + "uuid": "GPU-bfa26f0f-c563-4d7b-2157-ca283ea42f01", + "driver": "525.125.06", + "serial": "1325121022674", + "memory_total_MiB": 49140 + } + ], + "num_gpus": 1 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null + }, + { + "proof_id": "3648dc8e-815c-4afa-9a55-d8ef94c94720", + "circuit_name": "circom-multiplier2", + "circuit_id": "dc8d2ea3-558f-464b-88ef-4bfa06fa618e", + "circuit_type": "circom", + "date_created": "2024-01-15T12:58:03.819Z", + "perform_verify": false, + "status": "Ready", + "compute_time": "P0DT00H00M05.952523S", + "compute_times": { + "prove": 5.78664686344564, + "total": 6.02712868899107, + "queued": 19.881766, + "clean_up": 0.000322168692946434, + "file_setup": 0.22792908176779747, + "save_results": 0.0026133283972740173, + "generate_witness_c": 0.009340517222881317 + }, + "file_sizes": { + "proof": 705, + "total": 711, + "public": 6, + "total_gb": 7.11e-7, + "total_mb": 0.000711 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "proof_input": null, + "proof": null, + "prover_implementation": { + "name": "GPU Tachyonic", + "smbc": 6, + "smcurve": "spparkx.alt_bn128", + "smreplicate": false + }, + "public": null, + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nopl nonstop_tsc cpuid extd_apicid aperfmperf rapl pni pclmulqdq monitor ssse3 fma cx16 pcid sse4_1 sse4_2 movbe popcnt aes xsave avx f16c rdrand lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt tce topoext perfctr_core perfctr_nb bpext perfctr_llc mwaitx cpb cat_l3 cdp_l3 invpcid_single hw_pstate ssbd mba ibrs ibpb stibp vmmcall fsgsbase bmi1 avx2 smep bmi2 invpcid cqm rdt_a rdseed adx smap clflushopt clwb sha_ni xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local clzero irperf xsaveerptr rdpru wbnoinvd amd_ppin brs arat npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold v_vmsave_vmload vgif v_spec_ctrl umip pku ospke vaes vpclmulqdq rdpid overflow_recov succor smca", + "Model:": "1", + "CPU(s):": "128", + "BogoMIPS:": "5200.22", + "L2 cache:": "32 MiB (64 instances)", + "L3 cache:": "256 MiB (8 instances)", + "Stepping:": "1", + "L1d cache:": "2 MiB (64 instances)", + "L1i cache:": "2 MiB (64 instances)", + "Socket(s):": "2", + "Vendor ID:": "AuthenticAMD", + "Byte Order:": "Little Endian", + "CPU family:": "25", + "Model name:": "AMD EPYC 7513 32-Core Processor", + "CPU max MHz:": "3681.6399", + "CPU min MHz:": "1500.0000", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "48 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "AMD-V", + "Frequency boost:": "enabled", + "NUMA node0 CPU(s):": "0-31,64-95", + "NUMA node1 CPU(s):": "32-63,96-127", + "Vulnerability Mds:": "Not affected", + "Core(s) per socket:": "32", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Not affected", + "On-line CPU(s) list:": "0,7-31,34-64,71-95,98-127", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "1-6,32,33,65-70,96,97", + "Vulnerability Meltdown:": "Not affected", + "Vulnerability Retbleed:": "Not affected", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; Retpolines, IBPB conditional, IBRS_FW, STIBP always-on, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "Not affected", + "Vulnerability Mmio stale data:": "Not affected", + "Vulnerability Tsx async abort:": "Not affected", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [ + { + "id": 0, + "name": "NVIDIA RTX A5000", + "uuid": "GPU-8123ac87-4c84-a9e9-8b99-054309b65f6c", + "driver": "525.125.06", + "serial": "1323821036088", + "memory_total_MiB": 24564 + } + ], + "num_gpus": 1 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null + }, + { + "proof_id": "0593535e-0857-4dfc-8f4d-2b151e5f7bad", + "circuit_name": "circom-multiplier2", + "circuit_id": "b0811776-3cbb-4f04-91fa-77ff7816010c", + "circuit_type": "circom", + "date_created": "2024-01-15T12:58:00.883Z", + "perform_verify": false, + "status": "Ready", + "compute_time": "P0DT00H00M06.075331S", + "compute_times": { + "prove": 5.884085742756724, + "total": 6.148683849722147, + "queued": 15.626844, + "clean_up": 0.0003361683338880539, + "file_setup": 0.25031704641878605, + "save_results": 0.0027868077158927917, + "generate_witness_c": 0.010888265445828438 + }, + "file_sizes": { + "proof": 709, + "total": 715, + "public": 6, + "total_gb": 7.15e-7, + "total_mb": 0.000715 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "proof_input": null, + "proof": null, + "prover_implementation": { + "name": "GPU Tachyonic", + "smbc": 6, + "smcurve": "spparkx.alt_bn128", + "smreplicate": false + }, + "public": null, + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nopl nonstop_tsc cpuid extd_apicid aperfmperf rapl pni pclmulqdq monitor ssse3 fma cx16 pcid sse4_1 sse4_2 movbe popcnt aes xsave avx f16c rdrand lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt tce topoext perfctr_core perfctr_nb bpext perfctr_llc mwaitx cpb cat_l3 cdp_l3 invpcid_single hw_pstate ssbd mba ibrs ibpb stibp vmmcall fsgsbase bmi1 avx2 smep bmi2 invpcid cqm rdt_a rdseed adx smap clflushopt clwb sha_ni xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local clzero irperf xsaveerptr rdpru wbnoinvd amd_ppin brs arat npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold v_vmsave_vmload vgif v_spec_ctrl umip pku ospke vaes vpclmulqdq rdpid overflow_recov succor smca", + "Model:": "1", + "CPU(s):": "128", + "BogoMIPS:": "5200.22", + "L2 cache:": "32 MiB (64 instances)", + "L3 cache:": "256 MiB (8 instances)", + "Stepping:": "1", + "L1d cache:": "2 MiB (64 instances)", + "L1i cache:": "2 MiB (64 instances)", + "Socket(s):": "2", + "Vendor ID:": "AuthenticAMD", + "Byte Order:": "Little Endian", + "CPU family:": "25", + "Model name:": "AMD EPYC 7513 32-Core Processor", + "CPU max MHz:": "3681.6399", + "CPU min MHz:": "1500.0000", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "48 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "AMD-V", + "Frequency boost:": "enabled", + "NUMA node0 CPU(s):": "0-31,64-95", + "NUMA node1 CPU(s):": "32-63,96-127", + "Vulnerability Mds:": "Not affected", + "Core(s) per socket:": "32", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Not affected", + "On-line CPU(s) list:": "0,5-64,69-127", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "1-4,65-68", + "Vulnerability Meltdown:": "Not affected", + "Vulnerability Retbleed:": "Not affected", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; Retpolines, IBPB conditional, IBRS_FW, STIBP always-on, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "Not affected", + "Vulnerability Mmio stale data:": "Not affected", + "Vulnerability Tsx async abort:": "Not affected", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [ + { + "id": 0, + "name": "NVIDIA RTX A5000", + "uuid": "GPU-8123ac87-4c84-a9e9-8b99-054309b65f6c", + "driver": "525.125.06", + "serial": "1323821036088", + "memory_total_MiB": 24564 + } + ], + "num_gpus": 1 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null + }, + { + "proof_id": "1a60be26-4e51-4ac6-befd-db89c42c6f47", + "circuit_name": "circom-multiplier2", + "circuit_id": "f8e982ba-0f45-445f-8080-31e81ea66636", + "circuit_type": "circom", + "date_created": "2024-01-15T12:57:55.709Z", + "perform_verify": false, + "status": "Ready", + "compute_time": "P0DT00H00M06.347161S", + "compute_times": { + "prove": 6.171584198251367, + "total": 6.416391229256988, + "queued": 13.397523, + "clean_up": 0.00026652775704860687, + "file_setup": 0.23340564966201782, + "save_results": 0.0024722814559936523, + "generate_witness_c": 0.008305234834551811 + }, + "file_sizes": { + "proof": 706, + "total": 712, + "public": 6, + "total_gb": 7.12e-7, + "total_mb": 0.000712 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "proof_input": null, + "proof": null, + "prover_implementation": { + "name": "GPU Tachyonic", + "smbc": 6, + "smcurve": "spparkx.alt_bn128", + "smreplicate": false + }, + "public": null, + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nopl nonstop_tsc cpuid extd_apicid aperfmperf rapl pni pclmulqdq monitor ssse3 fma cx16 pcid sse4_1 sse4_2 movbe popcnt aes xsave avx f16c rdrand lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt tce topoext perfctr_core perfctr_nb bpext perfctr_llc mwaitx cpb cat_l3 cdp_l3 invpcid_single hw_pstate ssbd mba ibrs ibpb stibp vmmcall fsgsbase bmi1 avx2 smep bmi2 invpcid cqm rdt_a rdseed adx smap clflushopt clwb sha_ni xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local clzero irperf xsaveerptr rdpru wbnoinvd amd_ppin brs arat npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold v_vmsave_vmload vgif v_spec_ctrl umip pku ospke vaes vpclmulqdq rdpid overflow_recov succor smca", + "Model:": "1", + "CPU(s):": "128", + "BogoMIPS:": "5200.22", + "L2 cache:": "32 MiB (64 instances)", + "L3 cache:": "256 MiB (8 instances)", + "Stepping:": "1", + "L1d cache:": "2 MiB (64 instances)", + "L1i cache:": "2 MiB (64 instances)", + "Socket(s):": "2", + "Vendor ID:": "AuthenticAMD", + "Byte Order:": "Little Endian", + "CPU family:": "25", + "Model name:": "AMD EPYC 7513 32-Core Processor", + "CPU max MHz:": "3681.6399", + "CPU min MHz:": "1500.0000", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "48 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "AMD-V", + "Frequency boost:": "enabled", + "NUMA node0 CPU(s):": "0-31,64-95", + "NUMA node1 CPU(s):": "32-63,96-127", + "Vulnerability Mds:": "Not affected", + "Core(s) per socket:": "32", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Not affected", + "On-line CPU(s) list:": "0,5-64,69-127", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "1-4,65-68", + "Vulnerability Meltdown:": "Not affected", + "Vulnerability Retbleed:": "Not affected", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; Retpolines, IBPB conditional, IBRS_FW, STIBP always-on, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "Not affected", + "Vulnerability Mmio stale data:": "Not affected", + "Vulnerability Tsx async abort:": "Not affected", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [ + { + "id": 0, + "name": "NVIDIA RTX A5000", + "uuid": "GPU-8123ac87-4c84-a9e9-8b99-054309b65f6c", + "driver": "525.125.06", + "serial": "1323821036088", + "memory_total_MiB": 24564 + } + ], + "num_gpus": 1 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null + }, + { + "proof_id": "e06d8295-f579-452d-aff6-58b1733c3b00", + "circuit_name": "circom-multiplier2", + "circuit_id": "39a7d49d-2aa4-42f5-bad7-41fa853c5400", + "circuit_type": "circom", + "date_created": "2024-01-15T12:57:48.596Z", + "perform_verify": false, + "status": "Ready", + "compute_time": "P0DT00H00M06.389301S", + "compute_times": { + "prove": 6.184801682829857, + "total": 6.4623388685286045, + "queued": 13.056683, + "clean_up": 0.00022029876708984375, + "file_setup": 0.2468203753232956, + "save_results": 0.002211831510066986, + "generate_witness_c": 0.027915021404623985 + }, + "file_sizes": { + "proof": 708, + "total": 714, + "public": 6, + "total_gb": 7.14e-7, + "total_mb": 0.000714 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "proof_input": null, + "proof": null, + "prover_implementation": { + "name": "GPU Tachyonic", + "smbc": 6, + "smcurve": "spparkx.alt_bn128", + "smreplicate": false + }, + "public": null, + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nopl nonstop_tsc cpuid extd_apicid aperfmperf rapl pni pclmulqdq monitor ssse3 fma cx16 pcid sse4_1 sse4_2 movbe popcnt aes xsave avx f16c rdrand lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt tce topoext perfctr_core perfctr_nb bpext perfctr_llc mwaitx cpb cat_l3 cdp_l3 invpcid_single hw_pstate ssbd mba ibrs ibpb stibp vmmcall fsgsbase bmi1 avx2 smep bmi2 invpcid cqm rdt_a rdseed adx smap clflushopt clwb sha_ni xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local clzero irperf xsaveerptr rdpru wbnoinvd amd_ppin brs arat npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold v_vmsave_vmload vgif v_spec_ctrl umip pku ospke vaes vpclmulqdq rdpid overflow_recov succor smca", + "Model:": "1", + "CPU(s):": "128", + "BogoMIPS:": "5200.22", + "L2 cache:": "32 MiB (64 instances)", + "L3 cache:": "256 MiB (8 instances)", + "Stepping:": "1", + "L1d cache:": "2 MiB (64 instances)", + "L1i cache:": "2 MiB (64 instances)", + "Socket(s):": "2", + "Vendor ID:": "AuthenticAMD", + "Byte Order:": "Little Endian", + "CPU family:": "25", + "Model name:": "AMD EPYC 7513 32-Core Processor", + "CPU max MHz:": "3681.6399", + "CPU min MHz:": "1500.0000", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "48 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "AMD-V", + "Frequency boost:": "enabled", + "NUMA node0 CPU(s):": "0-31,64-95", + "NUMA node1 CPU(s):": "32-63,96-127", + "Vulnerability Mds:": "Not affected", + "Core(s) per socket:": "32", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Not affected", + "On-line CPU(s) list:": "0,5-64,69-127", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "1-4,65-68", + "Vulnerability Meltdown:": "Not affected", + "Vulnerability Retbleed:": "Not affected", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; Retpolines, IBPB conditional, IBRS_FW, STIBP always-on, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "Not affected", + "Vulnerability Mmio stale data:": "Not affected", + "Vulnerability Tsx async abort:": "Not affected", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [ + { + "id": 0, + "name": "NVIDIA RTX A5000", + "uuid": "GPU-8123ac87-4c84-a9e9-8b99-054309b65f6c", + "driver": "525.125.06", + "serial": "1323821036088", + "memory_total_MiB": 24564 + } + ], + "num_gpus": 1 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null + }, + { + "proof_id": "2e4edf7e-5109-43cf-a48d-4b4fdfcd2e19", + "circuit_name": "circom-multiplier2", + "circuit_id": "4803fbe7-94df-4450-862e-222f380aa951", + "circuit_type": "circom", + "date_created": "2024-01-15T02:08:34.540Z", + "perform_verify": false, + "status": "Ready", + "compute_time": "P0DT00H00M03.935803S", + "compute_times": { + "prove": 3.0700035598129034, + "total": 4.0028952937573195, + "queued": 0.33355, + "clean_up": 0.0002639107406139374, + "file_setup": 0.27034700475633144, + "save_results": 0.06622319296002388, + "generate_witness_c": 0.5958553366363049 + }, + "file_sizes": { + "proof": 707, + "total": 713, + "public": 6, + "total_gb": 7.13e-7, + "total_mb": 0.000713 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "proof_input": null, + "proof": null, + "prover_implementation": { + "name": "GPU Tachyonic", + "smbc": 6, + "smcurve": "spparkx.alt_bn128", + "smreplicate": false + }, + "public": null, + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nopl nonstop_tsc cpuid extd_apicid aperfmperf rapl pni pclmulqdq monitor ssse3 fma cx16 pcid sse4_1 sse4_2 movbe popcnt aes xsave avx f16c rdrand lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt tce topoext perfctr_core perfctr_nb bpext perfctr_llc mwaitx cpb cat_l3 cdp_l3 invpcid_single hw_pstate ssbd mba ibrs ibpb stibp vmmcall fsgsbase bmi1 avx2 smep bmi2 invpcid cqm rdt_a rdseed adx smap clflushopt clwb sha_ni xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local clzero irperf xsaveerptr rdpru wbnoinvd amd_ppin brs arat npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold v_vmsave_vmload vgif v_spec_ctrl umip pku ospke vaes vpclmulqdq rdpid overflow_recov succor smca", + "Model:": "1", + "CPU(s):": "128", + "BogoMIPS:": "5200.47", + "L2 cache:": "32 MiB (64 instances)", + "L3 cache:": "256 MiB (8 instances)", + "Stepping:": "1", + "L1d cache:": "2 MiB (64 instances)", + "L1i cache:": "2 MiB (64 instances)", + "Socket(s):": "2", + "Vendor ID:": "AuthenticAMD", + "Byte Order:": "Little Endian", + "CPU family:": "25", + "Model name:": "AMD EPYC 7513 32-Core Processor", + "CPU max MHz:": "3681.6399", + "CPU min MHz:": "1500.0000", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "48 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "AMD-V", + "Frequency boost:": "enabled", + "NUMA node0 CPU(s):": "0-31,64-95", + "NUMA node1 CPU(s):": "32-63,96-127", + "Vulnerability Mds:": "Not affected", + "Core(s) per socket:": "32", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Not affected", + "On-line CPU(s) list:": "0,6,8,10-31,35-63,69,70,72,74-95,99-127", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "1-5,7,9,32-34,64-68,71,73,96-98", + "Vulnerability Meltdown:": "Not affected", + "Vulnerability Retbleed:": "Not affected", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; Retpolines, IBPB conditional, IBRS_FW, STIBP always-on, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "Not affected", + "Vulnerability Mmio stale data:": "Not affected", + "Vulnerability Tsx async abort:": "Not affected", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [ + { + "id": 0, + "name": "NVIDIA RTX A5000", + "uuid": "GPU-d8160060-7665-694b-2fae-0222ae6d41b2", + "driver": "525.125.06", + "serial": "1322721018312", + "memory_total_MiB": 24564 + } + ], + "num_gpus": 1 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null + }, + { + "proof_id": "e119fb54-5449-4a01-ab87-b45ef71643db", + "circuit_name": "circom-multiplier2", + "circuit_id": "384650aa-8967-4250-af2a-7314d45d6a9e", + "circuit_type": "circom", + "date_created": "2024-01-15T02:08:29.773Z", + "perform_verify": false, + "status": "Ready", + "compute_time": "P0DT00H00M05.856164S", + "compute_times": { + "prove": 5.639464415609837, + "total": 5.929233264178038, + "queued": 0.650797, + "clean_up": 0.00027068890631198883, + "file_setup": 0.25932174175977707, + "save_results": 0.0027653388679027557, + "generate_witness_c": 0.02706645056605339 + }, + "file_sizes": { + "proof": 707, + "total": 713, + "public": 6, + "total_gb": 7.13e-7, + "total_mb": 0.000713 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "proof_input": null, + "proof": null, + "prover_implementation": { + "name": "GPU Tachyonic", + "smbc": 6, + "smcurve": "spparkx.alt_bn128", + "smreplicate": false + }, + "public": null, + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nopl nonstop_tsc cpuid extd_apicid aperfmperf rapl pni pclmulqdq monitor ssse3 fma cx16 pcid sse4_1 sse4_2 movbe popcnt aes xsave avx f16c rdrand lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt tce topoext perfctr_core perfctr_nb bpext perfctr_llc mwaitx cpb cat_l3 cdp_l3 invpcid_single hw_pstate ssbd mba ibrs ibpb stibp vmmcall fsgsbase bmi1 avx2 smep bmi2 invpcid cqm rdt_a rdseed adx smap clflushopt clwb sha_ni xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local clzero irperf xsaveerptr rdpru wbnoinvd amd_ppin brs arat npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold v_vmsave_vmload vgif v_spec_ctrl umip pku ospke vaes vpclmulqdq rdpid overflow_recov succor smca", + "Model:": "1", + "CPU(s):": "128", + "BogoMIPS:": "5200.16", + "L2 cache:": "32 MiB (64 instances)", + "L3 cache:": "256 MiB (8 instances)", + "Stepping:": "1", + "L1d cache:": "2 MiB (64 instances)", + "L1i cache:": "2 MiB (64 instances)", + "Socket(s):": "2", + "Vendor ID:": "AuthenticAMD", + "Byte Order:": "Little Endian", + "CPU family:": "25", + "Model name:": "AMD EPYC 7513 32-Core Processor", + "CPU max MHz:": "3681.6399", + "CPU min MHz:": "1500.0000", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "48 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "AMD-V", + "Frequency boost:": "enabled", + "NUMA node0 CPU(s):": "0-31,64-95", + "NUMA node1 CPU(s):": "32-63,96-127", + "Vulnerability Mds:": "Not affected", + "Core(s) per socket:": "32", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Not affected", + "On-line CPU(s) list:": "0,1,7-31,34-65,67,71-95,98-127", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "2-6,32,33,66,68-70,96,97", + "Vulnerability Meltdown:": "Not affected", + "Vulnerability Retbleed:": "Not affected", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; Retpolines, IBPB conditional, IBRS_FW, STIBP always-on, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "Not affected", + "Vulnerability Mmio stale data:": "Not affected", + "Vulnerability Tsx async abort:": "Not affected", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [ + { + "id": 0, + "name": "NVIDIA RTX A5000", + "uuid": "GPU-79117d4d-91b9-eb61-753d-b86432cca7e8", + "driver": "525.125.06", + "serial": "1325121130125", + "memory_total_MiB": 24564 + } + ], + "num_gpus": 1 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null + }, + { + "proof_id": "d4611aeb-4705-4373-951c-ba4c1e0329b5", + "circuit_name": "circom-multiplier2", + "circuit_id": "fda87f7f-c3ec-4f10-948e-d033331c76c9", + "circuit_type": "circom", + "date_created": "2024-01-15T02:08:24.790Z", + "perform_verify": false, + "status": "Ready", + "compute_time": "P0DT00H00M02.340675S", + "compute_times": { + "prove": 1.4024820234626532, + "total": 2.4250366389751434, + "queued": 0.269107, + "clean_up": 0.0002933405339717865, + "file_setup": 0.3153865169733763, + "save_results": 0.06680999137461185, + "generate_witness_c": 0.6396786384284496 + }, + "file_sizes": { + "proof": 708, + "total": 714, + "public": 6, + "total_gb": 7.14e-7, + "total_mb": 0.000714 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "proof_input": null, + "proof": null, + "prover_implementation": { + "name": "GPU Tachyonic", + "smbc": 6, + "smcurve": "spparkx.alt_bn128", + "smreplicate": false + }, + "public": null, + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nopl nonstop_tsc cpuid extd_apicid aperfmperf rapl pni pclmulqdq monitor ssse3 fma cx16 pcid sse4_1 sse4_2 movbe popcnt aes xsave avx f16c rdrand lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt tce topoext perfctr_core perfctr_nb bpext perfctr_llc mwaitx cpb cat_l3 cdp_l3 invpcid_single hw_pstate ssbd mba ibrs ibpb stibp vmmcall fsgsbase bmi1 avx2 smep bmi2 invpcid cqm rdt_a rdseed adx smap clflushopt clwb sha_ni xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local clzero irperf xsaveerptr rdpru wbnoinvd amd_ppin brs arat npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold v_vmsave_vmload vgif v_spec_ctrl umip pku ospke vaes vpclmulqdq rdpid overflow_recov succor smca", + "Model:": "1", + "CPU(s):": "128", + "BogoMIPS:": "5200.47", + "L2 cache:": "32 MiB (64 instances)", + "L3 cache:": "256 MiB (8 instances)", + "Stepping:": "1", + "L1d cache:": "2 MiB (64 instances)", + "L1i cache:": "2 MiB (64 instances)", + "Socket(s):": "2", + "Vendor ID:": "AuthenticAMD", + "Byte Order:": "Little Endian", + "CPU family:": "25", + "Model name:": "AMD EPYC 7513 32-Core Processor", + "CPU max MHz:": "3681.6399", + "CPU min MHz:": "1500.0000", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "48 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "AMD-V", + "Frequency boost:": "enabled", + "NUMA node0 CPU(s):": "0-31,64-95", + "NUMA node1 CPU(s):": "32-63,96-127", + "Vulnerability Mds:": "Not affected", + "Core(s) per socket:": "32", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Not affected", + "On-line CPU(s) list:": "0,2,5,6,8,10-31,35-63,66,69,70,72,74-95,99-127", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "1,3,4,7,9,32-34,64,65,67,68,71,73,96-98", + "Vulnerability Meltdown:": "Not affected", + "Vulnerability Retbleed:": "Not affected", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; Retpolines, IBPB conditional, IBRS_FW, STIBP always-on, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "Not affected", + "Vulnerability Mmio stale data:": "Not affected", + "Vulnerability Tsx async abort:": "Not affected", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [ + { + "id": 0, + "name": "NVIDIA RTX A5000", + "uuid": "GPU-d8160060-7665-694b-2fae-0222ae6d41b2", + "driver": "525.125.06", + "serial": "1322721018312", + "memory_total_MiB": 24564 + } + ], + "num_gpus": 1 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null + }, + { + "proof_id": "4f8ff74c-1051-44a3-ab0c-f4a6284bbf64", + "circuit_name": "circom-multiplier2", + "circuit_id": "57a370e8-d904-4e45-ad58-196db3d30f4d", + "circuit_type": "circom", + "date_created": "2024-01-15T02:08:20.359Z", + "perform_verify": false, + "status": "Ready", + "compute_time": "P0DT00H00M05.889013S", + "compute_times": { + "prove": 5.641947815194726, + "total": 5.964788755401969, + "queued": 0.707221, + "clean_up": 0.00029845722019672394, + "file_setup": 0.2756399307399988, + "save_results": 0.003031056374311447, + "generate_witness_c": 0.04360153712332249 + }, + "file_sizes": { + "proof": 706, + "total": 712, + "public": 6, + "total_gb": 7.12e-7, + "total_mb": 0.000712 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "proof_input": null, + "proof": null, + "prover_implementation": { + "name": "GPU Tachyonic", + "smbc": 6, + "smcurve": "spparkx.alt_bn128", + "smreplicate": false + }, + "public": null, + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nopl nonstop_tsc cpuid extd_apicid aperfmperf rapl pni pclmulqdq monitor ssse3 fma cx16 pcid sse4_1 sse4_2 movbe popcnt aes xsave avx f16c rdrand lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt tce topoext perfctr_core perfctr_nb bpext perfctr_llc mwaitx cpb cat_l3 cdp_l3 invpcid_single hw_pstate ssbd mba ibrs ibpb stibp vmmcall fsgsbase bmi1 avx2 smep bmi2 invpcid cqm rdt_a rdseed adx smap clflushopt clwb sha_ni xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local clzero irperf xsaveerptr rdpru wbnoinvd amd_ppin brs arat npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold v_vmsave_vmload vgif v_spec_ctrl umip pku ospke vaes vpclmulqdq rdpid overflow_recov succor smca", + "Model:": "1", + "CPU(s):": "128", + "BogoMIPS:": "5200.16", + "L2 cache:": "32 MiB (64 instances)", + "L3 cache:": "256 MiB (8 instances)", + "Stepping:": "1", + "L1d cache:": "2 MiB (64 instances)", + "L1i cache:": "2 MiB (64 instances)", + "Socket(s):": "2", + "Vendor ID:": "AuthenticAMD", + "Byte Order:": "Little Endian", + "CPU family:": "25", + "Model name:": "AMD EPYC 7513 32-Core Processor", + "CPU max MHz:": "3681.6399", + "CPU min MHz:": "1500.0000", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "48 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "AMD-V", + "Frequency boost:": "enabled", + "NUMA node0 CPU(s):": "0-31,64-95", + "NUMA node1 CPU(s):": "32-63,96-127", + "Vulnerability Mds:": "Not affected", + "Core(s) per socket:": "32", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Not affected", + "On-line CPU(s) list:": "0,1,7-31,34-65,67,71-95,98-127", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "2-6,32,33,66,68-70,96,97", + "Vulnerability Meltdown:": "Not affected", + "Vulnerability Retbleed:": "Not affected", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; Retpolines, IBPB conditional, IBRS_FW, STIBP always-on, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "Not affected", + "Vulnerability Mmio stale data:": "Not affected", + "Vulnerability Tsx async abort:": "Not affected", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [ + { + "id": 0, + "name": "NVIDIA RTX A5000", + "uuid": "GPU-79117d4d-91b9-eb61-753d-b86432cca7e8", + "driver": "525.125.06", + "serial": "1325121130125", + "memory_total_MiB": 24564 + } + ], + "num_gpus": 1 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null + }, + { + "proof_id": "d4ed1066-64bb-4f8b-a04c-03e87ba067d0", + "circuit_name": "circom-multiplier2", + "circuit_id": "1ffbe8f9-87c8-4e42-baa8-7aa33c4d17ee", + "circuit_type": "circom", + "date_created": "2024-01-15T02:07:24.129Z", + "perform_verify": false, + "status": "Ready", + "compute_time": "P0DT00H00M05.822988S", + "compute_times": { + "prove": 5.622058680281043, + "total": 5.897718669846654, + "queued": 7.598676, + "clean_up": 0.00030495598912239075, + "file_setup": 0.26278817281126976, + "save_results": 0.0033362358808517456, + "generate_witness_c": 0.008939847350120544 + }, + "file_sizes": { + "proof": 705, + "total": 711, + "public": 6, + "total_gb": 7.11e-7, + "total_mb": 0.000711 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "proof_input": null, + "proof": null, + "prover_implementation": { + "name": "GPU Tachyonic", + "smbc": 6, + "smcurve": "spparkx.alt_bn128", + "smreplicate": false + }, + "public": null, + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nopl nonstop_tsc cpuid extd_apicid aperfmperf rapl pni pclmulqdq monitor ssse3 fma cx16 pcid sse4_1 sse4_2 movbe popcnt aes xsave avx f16c rdrand lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt tce topoext perfctr_core perfctr_nb bpext perfctr_llc mwaitx cpb cat_l3 cdp_l3 invpcid_single hw_pstate ssbd mba ibrs ibpb stibp vmmcall fsgsbase bmi1 avx2 smep bmi2 invpcid cqm rdt_a rdseed adx smap clflushopt clwb sha_ni xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local clzero irperf xsaveerptr rdpru wbnoinvd amd_ppin brs arat npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold v_vmsave_vmload vgif v_spec_ctrl umip pku ospke vaes vpclmulqdq rdpid overflow_recov succor smca", + "Model:": "1", + "CPU(s):": "128", + "BogoMIPS:": "5200.16", + "L2 cache:": "32 MiB (64 instances)", + "L3 cache:": "256 MiB (8 instances)", + "Stepping:": "1", + "L1d cache:": "2 MiB (64 instances)", + "L1i cache:": "2 MiB (64 instances)", + "Socket(s):": "2", + "Vendor ID:": "AuthenticAMD", + "Byte Order:": "Little Endian", + "CPU family:": "25", + "Model name:": "AMD EPYC 7513 32-Core Processor", + "CPU max MHz:": "3681.6399", + "CPU min MHz:": "1500.0000", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "48 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "AMD-V", + "Frequency boost:": "enabled", + "NUMA node0 CPU(s):": "0-31,64-95", + "NUMA node1 CPU(s):": "32-63,96-127", + "Vulnerability Mds:": "Not affected", + "Core(s) per socket:": "32", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Not affected", + "On-line CPU(s) list:": "0,1,7-31,34-65,67,71-95,98-127", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "2-6,32,33,66,68-70,96,97", + "Vulnerability Meltdown:": "Not affected", + "Vulnerability Retbleed:": "Not affected", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; Retpolines, IBPB conditional, IBRS_FW, STIBP always-on, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "Not affected", + "Vulnerability Mmio stale data:": "Not affected", + "Vulnerability Tsx async abort:": "Not affected", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [ + { + "id": 0, + "name": "NVIDIA RTX A5000", + "uuid": "GPU-79117d4d-91b9-eb61-753d-b86432cca7e8", + "driver": "525.125.06", + "serial": "1325121130125", + "memory_total_MiB": 24564 + } + ], + "num_gpus": 1 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null + }, + { + "proof_id": "62e6a199-072a-4fbb-bd75-7d5ae26c3bf0", + "circuit_name": "circom-multiplier2", + "circuit_id": "d40bcb67-e940-4fb1-b733-5382a0d24818", + "circuit_type": "circom", + "date_created": "2024-01-15T02:07:23.768Z", + "perform_verify": false, + "status": "Ready", + "compute_time": "P0DT00H00M05.857713S", + "compute_times": { + "prove": 5.647087793797255, + "total": 5.9318443313241005, + "queued": 0.709273, + "clean_up": 0.000293998047709465, + "file_setup": 0.259655237197876, + "save_results": 0.0029127690941095352, + "generate_witness_c": 0.021628186106681824 + }, + "file_sizes": { + "proof": 708, + "total": 714, + "public": 6, + "total_gb": 7.14e-7, + "total_mb": 0.000714 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "proof_input": null, + "proof": null, + "prover_implementation": { + "name": "GPU Tachyonic", + "smbc": 6, + "smcurve": "spparkx.alt_bn128", + "smreplicate": false + }, + "public": null, + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nopl nonstop_tsc cpuid extd_apicid aperfmperf rapl pni pclmulqdq monitor ssse3 fma cx16 pcid sse4_1 sse4_2 movbe popcnt aes xsave avx f16c rdrand lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt tce topoext perfctr_core perfctr_nb bpext perfctr_llc mwaitx cpb cat_l3 cdp_l3 invpcid_single hw_pstate ssbd mba ibrs ibpb stibp vmmcall fsgsbase bmi1 avx2 smep bmi2 invpcid cqm rdt_a rdseed adx smap clflushopt clwb sha_ni xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local clzero irperf xsaveerptr rdpru wbnoinvd amd_ppin brs arat npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold v_vmsave_vmload vgif v_spec_ctrl umip pku ospke vaes vpclmulqdq rdpid overflow_recov succor smca", + "Model:": "1", + "CPU(s):": "128", + "BogoMIPS:": "5200.16", + "L2 cache:": "32 MiB (64 instances)", + "L3 cache:": "256 MiB (8 instances)", + "Stepping:": "1", + "L1d cache:": "2 MiB (64 instances)", + "L1i cache:": "2 MiB (64 instances)", + "Socket(s):": "2", + "Vendor ID:": "AuthenticAMD", + "Byte Order:": "Little Endian", + "CPU family:": "25", + "Model name:": "AMD EPYC 7513 32-Core Processor", + "CPU max MHz:": "3681.6399", + "CPU min MHz:": "1500.0000", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "48 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "AMD-V", + "Frequency boost:": "enabled", + "NUMA node0 CPU(s):": "0-31,64-95", + "NUMA node1 CPU(s):": "32-63,96-127", + "Vulnerability Mds:": "Not affected", + "Core(s) per socket:": "32", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Not affected", + "On-line CPU(s) list:": "0,1,7-31,34-65,67,71-95,98-127", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "2-6,32,33,66,68-70,96,97", + "Vulnerability Meltdown:": "Not affected", + "Vulnerability Retbleed:": "Not affected", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; Retpolines, IBPB conditional, IBRS_FW, STIBP always-on, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "Not affected", + "Vulnerability Mmio stale data:": "Not affected", + "Vulnerability Tsx async abort:": "Not affected", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [ + { + "id": 0, + "name": "NVIDIA RTX A5000", + "uuid": "GPU-79117d4d-91b9-eb61-753d-b86432cca7e8", + "driver": "525.125.06", + "serial": "1325121130125", + "memory_total_MiB": 24564 + } + ], + "num_gpus": 1 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null + }, + { + "proof_id": "4a8ec462-1b17-4478-ab4d-daec1c1d19e0", + "circuit_name": "circom-multiplier2", + "circuit_id": "a5de0eca-b376-4d33-91b6-9a30d4235aa7", + "circuit_type": "circom", + "date_created": "2024-01-15T02:03:39.549Z", + "perform_verify": false, + "status": "Ready", + "compute_time": "P0DT00H00M05.830061S", + "compute_times": { + "prove": 5.631390610709786, + "total": 5.904656020924449, + "queued": 1.982144, + "clean_up": 0.00028679706156253815, + "file_setup": 0.2506247963756323, + "save_results": 0.0030198898166418076, + "generate_witness_c": 0.018950100988149643 + }, + "file_sizes": { + "proof": 708, + "total": 714, + "public": 6, + "total_gb": 7.14e-7, + "total_mb": 0.000714 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "proof_input": null, + "proof": null, + "prover_implementation": { + "name": "GPU Tachyonic", + "smbc": 6, + "smcurve": "spparkx.alt_bn128", + "smreplicate": false + }, + "public": null, + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nopl nonstop_tsc cpuid extd_apicid aperfmperf rapl pni pclmulqdq monitor ssse3 fma cx16 pcid sse4_1 sse4_2 movbe popcnt aes xsave avx f16c rdrand lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt tce topoext perfctr_core perfctr_nb bpext perfctr_llc mwaitx cpb cat_l3 cdp_l3 invpcid_single hw_pstate ssbd mba ibrs ibpb stibp vmmcall fsgsbase bmi1 avx2 smep bmi2 invpcid cqm rdt_a rdseed adx smap clflushopt clwb sha_ni xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local clzero irperf xsaveerptr rdpru wbnoinvd amd_ppin brs arat npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold v_vmsave_vmload vgif v_spec_ctrl umip pku ospke vaes vpclmulqdq rdpid overflow_recov succor smca", + "Model:": "1", + "CPU(s):": "128", + "BogoMIPS:": "5200.16", + "L2 cache:": "32 MiB (64 instances)", + "L3 cache:": "256 MiB (8 instances)", + "Stepping:": "1", + "L1d cache:": "2 MiB (64 instances)", + "L1i cache:": "2 MiB (64 instances)", + "Socket(s):": "2", + "Vendor ID:": "AuthenticAMD", + "Byte Order:": "Little Endian", + "CPU family:": "25", + "Model name:": "AMD EPYC 7513 32-Core Processor", + "CPU max MHz:": "3681.6399", + "CPU min MHz:": "1500.0000", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "48 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "AMD-V", + "Frequency boost:": "enabled", + "NUMA node0 CPU(s):": "0-31,64-95", + "NUMA node1 CPU(s):": "32-63,96-127", + "Vulnerability Mds:": "Not affected", + "Core(s) per socket:": "32", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Not affected", + "On-line CPU(s) list:": "0,1,7-31,34-65,67,71-95,98-127", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "2-6,32,33,66,68-70,96,97", + "Vulnerability Meltdown:": "Not affected", + "Vulnerability Retbleed:": "Not affected", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; Retpolines, IBPB conditional, IBRS_FW, STIBP always-on, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "Not affected", + "Vulnerability Mmio stale data:": "Not affected", + "Vulnerability Tsx async abort:": "Not affected", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [ + { + "id": 0, + "name": "NVIDIA RTX A5000", + "uuid": "GPU-79117d4d-91b9-eb61-753d-b86432cca7e8", + "driver": "525.125.06", + "serial": "1325121130125", + "memory_total_MiB": 24564 + } + ], + "num_gpus": 1 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null + }, + { + "proof_id": "55636021-bab1-4e5c-a552-271ecd3bca46", + "circuit_name": "circom-multiplier2", + "circuit_id": "3eec50d0-8bc1-4266-8506-a76961a3627d", + "circuit_type": "circom", + "date_created": "2024-01-15T02:03:30.608Z", + "perform_verify": false, + "status": "Ready", + "compute_time": "P0DT00H00M05.833596S", + "compute_times": { + "prove": 5.6385393515229225, + "total": 5.9040695410221815, + "queued": 0.701332, + "clean_up": 0.00033533573150634766, + "file_setup": 0.24379334598779678, + "save_results": 0.0030993279069662094, + "generate_witness_c": 0.017941521480679512 + }, + "file_sizes": { + "proof": 706, + "total": 712, + "public": 6, + "total_gb": 7.12e-7, + "total_mb": 0.000712 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "proof_input": null, + "proof": null, + "prover_implementation": { + "name": "GPU Tachyonic", + "smbc": 6, + "smcurve": "spparkx.alt_bn128", + "smreplicate": false + }, + "public": null, + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nopl nonstop_tsc cpuid extd_apicid aperfmperf rapl pni pclmulqdq monitor ssse3 fma cx16 pcid sse4_1 sse4_2 movbe popcnt aes xsave avx f16c rdrand lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt tce topoext perfctr_core perfctr_nb bpext perfctr_llc mwaitx cpb cat_l3 cdp_l3 invpcid_single hw_pstate ssbd mba ibrs ibpb stibp vmmcall fsgsbase bmi1 avx2 smep bmi2 invpcid cqm rdt_a rdseed adx smap clflushopt clwb sha_ni xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local clzero irperf xsaveerptr rdpru wbnoinvd amd_ppin brs arat npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold v_vmsave_vmload vgif v_spec_ctrl umip pku ospke vaes vpclmulqdq rdpid overflow_recov succor smca", + "Model:": "1", + "CPU(s):": "128", + "BogoMIPS:": "5200.16", + "L2 cache:": "32 MiB (64 instances)", + "L3 cache:": "256 MiB (8 instances)", + "Stepping:": "1", + "L1d cache:": "2 MiB (64 instances)", + "L1i cache:": "2 MiB (64 instances)", + "Socket(s):": "2", + "Vendor ID:": "AuthenticAMD", + "Byte Order:": "Little Endian", + "CPU family:": "25", + "Model name:": "AMD EPYC 7513 32-Core Processor", + "CPU max MHz:": "3681.6399", + "CPU min MHz:": "1500.0000", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "48 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "AMD-V", + "Frequency boost:": "enabled", + "NUMA node0 CPU(s):": "0-31,64-95", + "NUMA node1 CPU(s):": "32-63,96-127", + "Vulnerability Mds:": "Not affected", + "Core(s) per socket:": "32", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Not affected", + "On-line CPU(s) list:": "0,1,7-31,34-65,67,71-95,98-127", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "2-6,32,33,66,68-70,96,97", + "Vulnerability Meltdown:": "Not affected", + "Vulnerability Retbleed:": "Not affected", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; Retpolines, IBPB conditional, IBRS_FW, STIBP always-on, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "Not affected", + "Vulnerability Mmio stale data:": "Not affected", + "Vulnerability Tsx async abort:": "Not affected", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [ + { + "id": 0, + "name": "NVIDIA RTX A5000", + "uuid": "GPU-79117d4d-91b9-eb61-753d-b86432cca7e8", + "driver": "525.125.06", + "serial": "1325121130125", + "memory_total_MiB": 24564 + } + ], + "num_gpus": 1 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null + }, + { + "proof_id": "6cdf4182-8844-4c68-b6cd-332129204371", + "circuit_name": "circom-multiplier2", + "circuit_id": "596a0973-b6a7-4e8f-b6d6-9f2ddb483f02", + "circuit_type": "circom", + "date_created": "2024-01-15T02:01:17.976Z", + "perform_verify": false, + "status": "Ready", + "compute_time": "P0DT00H00M05.847273S", + "compute_times": { + "prove": 5.660725159570575, + "total": 5.9144034665077925, + "queued": 0.696042, + "clean_up": 0.000287666916847229, + "file_setup": 0.2316605094820261, + "save_results": 0.0032375045120716095, + "generate_witness_c": 0.018273497000336647 + }, + "file_sizes": { + "proof": 707, + "total": 713, + "public": 6, + "total_gb": 7.13e-7, + "total_mb": 0.000713 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "proof_input": null, + "proof": null, + "prover_implementation": { + "name": "GPU Tachyonic", + "smbc": 6, + "smcurve": "spparkx.alt_bn128", + "smreplicate": false + }, + "public": null, + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nopl nonstop_tsc cpuid extd_apicid aperfmperf rapl pni pclmulqdq monitor ssse3 fma cx16 pcid sse4_1 sse4_2 movbe popcnt aes xsave avx f16c rdrand lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt tce topoext perfctr_core perfctr_nb bpext perfctr_llc mwaitx cpb cat_l3 cdp_l3 invpcid_single hw_pstate ssbd mba ibrs ibpb stibp vmmcall fsgsbase bmi1 avx2 smep bmi2 invpcid cqm rdt_a rdseed adx smap clflushopt clwb sha_ni xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local clzero irperf xsaveerptr rdpru wbnoinvd amd_ppin brs arat npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold v_vmsave_vmload vgif v_spec_ctrl umip pku ospke vaes vpclmulqdq rdpid overflow_recov succor smca", + "Model:": "1", + "CPU(s):": "128", + "BogoMIPS:": "5200.16", + "L2 cache:": "32 MiB (64 instances)", + "L3 cache:": "256 MiB (8 instances)", + "Stepping:": "1", + "L1d cache:": "2 MiB (64 instances)", + "L1i cache:": "2 MiB (64 instances)", + "Socket(s):": "2", + "Vendor ID:": "AuthenticAMD", + "Byte Order:": "Little Endian", + "CPU family:": "25", + "Model name:": "AMD EPYC 7513 32-Core Processor", + "CPU max MHz:": "3681.6399", + "CPU min MHz:": "1500.0000", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "48 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "AMD-V", + "Frequency boost:": "enabled", + "NUMA node0 CPU(s):": "0-31,64-95", + "NUMA node1 CPU(s):": "32-63,96-127", + "Vulnerability Mds:": "Not affected", + "Core(s) per socket:": "32", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Not affected", + "On-line CPU(s) list:": "0,1,7-31,34-65,67,71-95,98-127", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "2-6,32,33,66,68-70,96,97", + "Vulnerability Meltdown:": "Not affected", + "Vulnerability Retbleed:": "Not affected", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; Retpolines, IBPB conditional, IBRS_FW, STIBP always-on, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "Not affected", + "Vulnerability Mmio stale data:": "Not affected", + "Vulnerability Tsx async abort:": "Not affected", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [ + { + "id": 0, + "name": "NVIDIA RTX A5000", + "uuid": "GPU-79117d4d-91b9-eb61-753d-b86432cca7e8", + "driver": "525.125.06", + "serial": "1325121130125", + "memory_total_MiB": 24564 + } + ], + "num_gpus": 1 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null + }, + { + "proof_id": "fc45e68e-ccfe-43ab-87c1-f3114dada607", + "circuit_name": "circom-multiplier2", + "circuit_id": "4f5b0304-a53e-45e9-b83f-8e06611dc640", + "circuit_type": "circom", + "date_created": "2024-01-15T01:53:10.576Z", + "perform_verify": false, + "status": "Ready", + "compute_time": "P0DT00H00M05.825130S", + "compute_times": { + "prove": 5.63365101441741, + "total": 5.900212554261088, + "queued": 8.137106, + "clean_up": 0.00022866018116474152, + "file_setup": 0.25481966882944107, + "save_results": 0.0027084313333034515, + "generate_witness_c": 0.008522702381014824 + }, + "file_sizes": { + "proof": 708, + "total": 714, + "public": 6, + "total_gb": 7.14e-7, + "total_mb": 0.000714 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "proof_input": null, + "proof": null, + "prover_implementation": { + "name": "GPU Tachyonic", + "smbc": 6, + "smcurve": "spparkx.alt_bn128", + "smreplicate": false + }, + "public": null, + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nopl nonstop_tsc cpuid extd_apicid aperfmperf rapl pni pclmulqdq monitor ssse3 fma cx16 pcid sse4_1 sse4_2 movbe popcnt aes xsave avx f16c rdrand lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt tce topoext perfctr_core perfctr_nb bpext perfctr_llc mwaitx cpb cat_l3 cdp_l3 invpcid_single hw_pstate ssbd mba ibrs ibpb stibp vmmcall fsgsbase bmi1 avx2 smep bmi2 invpcid cqm rdt_a rdseed adx smap clflushopt clwb sha_ni xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local clzero irperf xsaveerptr rdpru wbnoinvd amd_ppin brs arat npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold v_vmsave_vmload vgif v_spec_ctrl umip pku ospke vaes vpclmulqdq rdpid overflow_recov succor smca", + "Model:": "1", + "CPU(s):": "128", + "BogoMIPS:": "5200.16", + "L2 cache:": "32 MiB (64 instances)", + "L3 cache:": "256 MiB (8 instances)", + "Stepping:": "1", + "L1d cache:": "2 MiB (64 instances)", + "L1i cache:": "2 MiB (64 instances)", + "Socket(s):": "2", + "Vendor ID:": "AuthenticAMD", + "Byte Order:": "Little Endian", + "CPU family:": "25", + "Model name:": "AMD EPYC 7513 32-Core Processor", + "CPU max MHz:": "3681.6399", + "CPU min MHz:": "1500.0000", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "48 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "AMD-V", + "Frequency boost:": "enabled", + "NUMA node0 CPU(s):": "0-31,64-95", + "NUMA node1 CPU(s):": "32-63,96-127", + "Vulnerability Mds:": "Not affected", + "Core(s) per socket:": "32", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Not affected", + "On-line CPU(s) list:": "0,1,7-31,34-65,67,71-95,98-127", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "2-6,32,33,66,68-70,96,97", + "Vulnerability Meltdown:": "Not affected", + "Vulnerability Retbleed:": "Not affected", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; Retpolines, IBPB conditional, IBRS_FW, STIBP always-on, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "Not affected", + "Vulnerability Mmio stale data:": "Not affected", + "Vulnerability Tsx async abort:": "Not affected", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [ + { + "id": 0, + "name": "NVIDIA RTX A5000", + "uuid": "GPU-79117d4d-91b9-eb61-753d-b86432cca7e8", + "driver": "525.125.06", + "serial": "1325121130125", + "memory_total_MiB": 24564 + } + ], + "num_gpus": 1 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null + }, + { + "proof_id": "93f27b36-de2d-4251-b7d6-1c9fccca2f06", + "circuit_name": "circom-multiplier2", + "circuit_id": "696b5f3c-ac4c-4c88-a40a-7b8d5239cb47", + "circuit_type": "circom", + "date_created": "2024-01-15T01:53:04.491Z", + "perform_verify": false, + "status": "Ready", + "compute_time": "P0DT00H00M06.143579S", + "compute_times": { + "prove": 5.624820232391357, + "total": 6.217369062826037, + "queued": 6.939374, + "clean_up": 0.0002844296395778656, + "file_setup": 0.577876154333353, + "save_results": 0.002981366589665413, + "generate_witness_c": 0.011145314201712608 + }, + "file_sizes": { + "proof": 707, + "total": 713, + "public": 6, + "total_gb": 7.13e-7, + "total_mb": 0.000713 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "proof_input": null, + "proof": null, + "prover_implementation": { + "name": "GPU Tachyonic", + "smbc": 6, + "smcurve": "spparkx.alt_bn128", + "smreplicate": false + }, + "public": null, + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nopl nonstop_tsc cpuid extd_apicid aperfmperf rapl pni pclmulqdq monitor ssse3 fma cx16 pcid sse4_1 sse4_2 movbe popcnt aes xsave avx f16c rdrand lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt tce topoext perfctr_core perfctr_nb bpext perfctr_llc mwaitx cpb cat_l3 cdp_l3 invpcid_single hw_pstate ssbd mba ibrs ibpb stibp vmmcall fsgsbase bmi1 avx2 smep bmi2 invpcid cqm rdt_a rdseed adx smap clflushopt clwb sha_ni xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local clzero irperf xsaveerptr rdpru wbnoinvd amd_ppin brs arat npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold v_vmsave_vmload vgif v_spec_ctrl umip pku ospke vaes vpclmulqdq rdpid overflow_recov succor smca", + "Model:": "1", + "CPU(s):": "128", + "BogoMIPS:": "5200.16", + "L2 cache:": "32 MiB (64 instances)", + "L3 cache:": "256 MiB (8 instances)", + "Stepping:": "1", + "L1d cache:": "2 MiB (64 instances)", + "L1i cache:": "2 MiB (64 instances)", + "Socket(s):": "2", + "Vendor ID:": "AuthenticAMD", + "Byte Order:": "Little Endian", + "CPU family:": "25", + "Model name:": "AMD EPYC 7513 32-Core Processor", + "CPU max MHz:": "3681.6399", + "CPU min MHz:": "1500.0000", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "48 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "AMD-V", + "Frequency boost:": "enabled", + "NUMA node0 CPU(s):": "0-31,64-95", + "NUMA node1 CPU(s):": "32-63,96-127", + "Vulnerability Mds:": "Not affected", + "Core(s) per socket:": "32", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Not affected", + "On-line CPU(s) list:": "0,1,7-31,34-65,67,71-95,98-127", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "2-6,32,33,66,68-70,96,97", + "Vulnerability Meltdown:": "Not affected", + "Vulnerability Retbleed:": "Not affected", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; Retpolines, IBPB conditional, IBRS_FW, STIBP always-on, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "Not affected", + "Vulnerability Mmio stale data:": "Not affected", + "Vulnerability Tsx async abort:": "Not affected", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [ + { + "id": 0, + "name": "NVIDIA RTX A5000", + "uuid": "GPU-79117d4d-91b9-eb61-753d-b86432cca7e8", + "driver": "525.125.06", + "serial": "1325121130125", + "memory_total_MiB": 24564 + } + ], + "num_gpus": 1 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null + }, + { + "proof_id": "6c5ed6a4-de8d-4cde-9d04-844c0fae1903", + "circuit_name": "circom-multiplier2", + "circuit_id": "b4a23df2-a7e7-4eb8-9ce1-f9d52a7b5efd", + "circuit_type": "circom", + "date_created": "2024-01-15T01:53:00.837Z", + "perform_verify": false, + "status": "Ready", + "compute_time": "P0DT00H00M05.826862S", + "compute_times": { + "prove": 5.6370560657233, + "total": 5.890984209254384, + "queued": 0.694293, + "clean_up": 0.00031204894185066223, + "file_setup": 0.23010724037885666, + "save_results": 0.0025510434061288834, + "generate_witness_c": 0.02062433399260044 + }, + "file_sizes": { + "proof": 708, + "total": 714, + "public": 6, + "total_gb": 7.14e-7, + "total_mb": 0.000714 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "proof_input": null, + "proof": null, + "prover_implementation": { + "name": "GPU Tachyonic", + "smbc": 6, + "smcurve": "spparkx.alt_bn128", + "smreplicate": false + }, + "public": null, + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nopl nonstop_tsc cpuid extd_apicid aperfmperf rapl pni pclmulqdq monitor ssse3 fma cx16 pcid sse4_1 sse4_2 movbe popcnt aes xsave avx f16c rdrand lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt tce topoext perfctr_core perfctr_nb bpext perfctr_llc mwaitx cpb cat_l3 cdp_l3 invpcid_single hw_pstate ssbd mba ibrs ibpb stibp vmmcall fsgsbase bmi1 avx2 smep bmi2 invpcid cqm rdt_a rdseed adx smap clflushopt clwb sha_ni xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local clzero irperf xsaveerptr rdpru wbnoinvd amd_ppin brs arat npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold v_vmsave_vmload vgif v_spec_ctrl umip pku ospke vaes vpclmulqdq rdpid overflow_recov succor smca", + "Model:": "1", + "CPU(s):": "128", + "BogoMIPS:": "5200.16", + "L2 cache:": "32 MiB (64 instances)", + "L3 cache:": "256 MiB (8 instances)", + "Stepping:": "1", + "L1d cache:": "2 MiB (64 instances)", + "L1i cache:": "2 MiB (64 instances)", + "Socket(s):": "2", + "Vendor ID:": "AuthenticAMD", + "Byte Order:": "Little Endian", + "CPU family:": "25", + "Model name:": "AMD EPYC 7513 32-Core Processor", + "CPU max MHz:": "3681.6399", + "CPU min MHz:": "1500.0000", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "48 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "AMD-V", + "Frequency boost:": "enabled", + "NUMA node0 CPU(s):": "0-31,64-95", + "NUMA node1 CPU(s):": "32-63,96-127", + "Vulnerability Mds:": "Not affected", + "Core(s) per socket:": "32", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Not affected", + "On-line CPU(s) list:": "0,1,7-31,34-65,67,71-95,98-127", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "2-6,32,33,66,68-70,96,97", + "Vulnerability Meltdown:": "Not affected", + "Vulnerability Retbleed:": "Not affected", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; Retpolines, IBPB conditional, IBRS_FW, STIBP always-on, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "Not affected", + "Vulnerability Mmio stale data:": "Not affected", + "Vulnerability Tsx async abort:": "Not affected", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [ + { + "id": 0, + "name": "NVIDIA RTX A5000", + "uuid": "GPU-79117d4d-91b9-eb61-753d-b86432cca7e8", + "driver": "525.125.06", + "serial": "1325121130125", + "memory_total_MiB": 24564 + } + ], + "num_gpus": 1 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null + }, + { + "proof_id": "46048553-2c00-40bc-ae69-76f68d26286e", + "circuit_name": "circom-multiplier2", + "circuit_id": "d492fd4d-7509-45fb-87b3-adef4fd745df", + "circuit_type": "circom", + "date_created": "2024-01-15T01:52:49.479Z", + "perform_verify": false, + "status": "Ready", + "compute_time": "P0DT00H00M05.859514S", + "compute_times": { + "prove": 5.655713541433215, + "total": 5.953595075756311, + "queued": 0.693846, + "clean_up": 0.0002659261226654053, + "file_setup": 0.2661227900534868, + "save_results": 0.002224266529083252, + "generate_witness_c": 0.028907276690006256 + }, + "file_sizes": { + "proof": 707, + "total": 713, + "public": 6, + "total_gb": 7.13e-7, + "total_mb": 0.000713 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "proof_input": null, + "proof": null, + "prover_implementation": { + "name": "GPU Tachyonic", + "smbc": 6, + "smcurve": "spparkx.alt_bn128", + "smreplicate": false + }, + "public": null, + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nopl nonstop_tsc cpuid extd_apicid aperfmperf rapl pni pclmulqdq monitor ssse3 fma cx16 pcid sse4_1 sse4_2 movbe popcnt aes xsave avx f16c rdrand lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt tce topoext perfctr_core perfctr_nb bpext perfctr_llc mwaitx cpb cat_l3 cdp_l3 invpcid_single hw_pstate ssbd mba ibrs ibpb stibp vmmcall fsgsbase bmi1 avx2 smep bmi2 invpcid cqm rdt_a rdseed adx smap clflushopt clwb sha_ni xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local clzero irperf xsaveerptr rdpru wbnoinvd amd_ppin brs arat npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold v_vmsave_vmload vgif v_spec_ctrl umip pku ospke vaes vpclmulqdq rdpid overflow_recov succor smca", + "Model:": "1", + "CPU(s):": "128", + "BogoMIPS:": "5200.16", + "L2 cache:": "32 MiB (64 instances)", + "L3 cache:": "256 MiB (8 instances)", + "Stepping:": "1", + "L1d cache:": "2 MiB (64 instances)", + "L1i cache:": "2 MiB (64 instances)", + "Socket(s):": "2", + "Vendor ID:": "AuthenticAMD", + "Byte Order:": "Little Endian", + "CPU family:": "25", + "Model name:": "AMD EPYC 7513 32-Core Processor", + "CPU max MHz:": "3681.6399", + "CPU min MHz:": "1500.0000", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "48 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "AMD-V", + "Frequency boost:": "enabled", + "NUMA node0 CPU(s):": "0-31,64-95", + "NUMA node1 CPU(s):": "32-63,96-127", + "Vulnerability Mds:": "Not affected", + "Core(s) per socket:": "32", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Not affected", + "On-line CPU(s) list:": "0,1,7-31,34-65,67,71-95,98-127", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "2-6,32,33,66,68-70,96,97", + "Vulnerability Meltdown:": "Not affected", + "Vulnerability Retbleed:": "Not affected", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; Retpolines, IBPB conditional, IBRS_FW, STIBP always-on, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "Not affected", + "Vulnerability Mmio stale data:": "Not affected", + "Vulnerability Tsx async abort:": "Not affected", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [ + { + "id": 0, + "name": "NVIDIA RTX A5000", + "uuid": "GPU-79117d4d-91b9-eb61-753d-b86432cca7e8", + "driver": "525.125.06", + "serial": "1325121130125", + "memory_total_MiB": 24564 + } + ], + "num_gpus": 1 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null + }, + { + "proof_id": "73c4b7e5-e5e8-42de-b0ee-ca5b596c012d", + "circuit_name": "circom-multiplier2", + "circuit_id": "16c96d49-925a-4232-8da4-c43026de854e", + "circuit_type": "circom", + "date_created": "2024-01-15T01:44:52.289Z", + "perform_verify": false, + "status": "Ready", + "compute_time": "P0DT00H00M06.397579S", + "compute_times": { + "prove": 6.192587662488222, + "total": 6.465461192652583, + "queued": 9.005381, + "clean_up": 0.0004098862409591675, + "file_setup": 0.25517357513308525, + "save_results": 0.00757579505443573, + "generate_witness_c": 0.009418565779924393 + }, + "file_sizes": { + "proof": 708, + "total": 714, + "public": 6, + "total_gb": 7.14e-7, + "total_mb": 0.000714 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "proof_input": null, + "proof": null, + "prover_implementation": { + "name": "GPU Tachyonic", + "smbc": 6, + "smcurve": "spparkx.alt_bn128", + "smreplicate": false + }, + "public": null, + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nopl nonstop_tsc cpuid extd_apicid aperfmperf rapl pni pclmulqdq monitor ssse3 fma cx16 pcid sse4_1 sse4_2 movbe popcnt aes xsave avx f16c rdrand lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt tce topoext perfctr_core perfctr_nb bpext perfctr_llc mwaitx cpb cat_l3 cdp_l3 invpcid_single hw_pstate ssbd mba ibrs ibpb stibp vmmcall fsgsbase bmi1 avx2 smep bmi2 invpcid cqm rdt_a rdseed adx smap clflushopt clwb sha_ni xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local clzero irperf xsaveerptr rdpru wbnoinvd amd_ppin brs arat npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold v_vmsave_vmload vgif v_spec_ctrl umip pku ospke vaes vpclmulqdq rdpid overflow_recov succor smca", + "Model:": "1", + "CPU(s):": "128", + "BogoMIPS:": "5200.17", + "L2 cache:": "32 MiB (64 instances)", + "L3 cache:": "256 MiB (8 instances)", + "Stepping:": "1", + "L1d cache:": "2 MiB (64 instances)", + "L1i cache:": "2 MiB (64 instances)", + "Socket(s):": "2", + "Vendor ID:": "AuthenticAMD", + "Byte Order:": "Little Endian", + "CPU family:": "25", + "Model name:": "AMD EPYC 7513 32-Core Processor", + "CPU max MHz:": "3681.6399", + "CPU min MHz:": "1500.0000", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "48 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "AMD-V", + "Frequency boost:": "enabled", + "NUMA node0 CPU(s):": "0-31,64-95", + "NUMA node1 CPU(s):": "32-63,96-127", + "Vulnerability Mds:": "Not affected", + "Core(s) per socket:": "32", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Not affected", + "On-line CPU(s) list:": "0-2,5-32,34-63,65,66,69-96,98-127", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "3,4,33,64,67,68,97", + "Vulnerability Meltdown:": "Not affected", + "Vulnerability Retbleed:": "Not affected", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; Retpolines, IBPB conditional, IBRS_FW, STIBP always-on, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "Not affected", + "Vulnerability Mmio stale data:": "Not affected", + "Vulnerability Tsx async abort:": "Not affected", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [ + { + "id": 0, + "name": "NVIDIA RTX A5000", + "uuid": "GPU-782cd3ea-0ea7-bd75-f8f2-54d75566f9c2", + "driver": "525.125.06", + "serial": "1324921081899", + "memory_total_MiB": 24564 + } + ], + "num_gpus": 1 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null + }, + { + "proof_id": "be7990f4-a06a-4dae-873d-4c331b6c6368", + "circuit_name": "circom-multiplier2", + "circuit_id": "01d61417-f3c8-405d-8327-8676c11b920c", + "circuit_type": "circom", + "date_created": "2024-01-15T01:44:47.933Z", + "perform_verify": false, + "status": "Ready", + "compute_time": "P0DT00H00M06.415701S", + "compute_times": { + "prove": 6.212794356048107, + "total": 6.486022163182497, + "queued": 5.792826, + "clean_up": 0.0002670474350452423, + "file_setup": 0.2612623367458582, + "save_results": 0.002615245059132576, + "generate_witness_c": 0.008822411298751831 + }, + "file_sizes": { + "proof": 705, + "total": 711, + "public": 6, + "total_gb": 7.11e-7, + "total_mb": 0.000711 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "proof_input": null, + "proof": null, + "prover_implementation": { + "name": "GPU Tachyonic", + "smbc": 6, + "smcurve": "spparkx.alt_bn128", + "smreplicate": false + }, + "public": null, + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nopl nonstop_tsc cpuid extd_apicid aperfmperf rapl pni pclmulqdq monitor ssse3 fma cx16 pcid sse4_1 sse4_2 movbe popcnt aes xsave avx f16c rdrand lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt tce topoext perfctr_core perfctr_nb bpext perfctr_llc mwaitx cpb cat_l3 cdp_l3 invpcid_single hw_pstate ssbd mba ibrs ibpb stibp vmmcall fsgsbase bmi1 avx2 smep bmi2 invpcid cqm rdt_a rdseed adx smap clflushopt clwb sha_ni xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local clzero irperf xsaveerptr rdpru wbnoinvd amd_ppin brs arat npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold v_vmsave_vmload vgif v_spec_ctrl umip pku ospke vaes vpclmulqdq rdpid overflow_recov succor smca", + "Model:": "1", + "CPU(s):": "128", + "BogoMIPS:": "5200.17", + "L2 cache:": "32 MiB (64 instances)", + "L3 cache:": "256 MiB (8 instances)", + "Stepping:": "1", + "L1d cache:": "2 MiB (64 instances)", + "L1i cache:": "2 MiB (64 instances)", + "Socket(s):": "2", + "Vendor ID:": "AuthenticAMD", + "Byte Order:": "Little Endian", + "CPU family:": "25", + "Model name:": "AMD EPYC 7513 32-Core Processor", + "CPU max MHz:": "3681.6399", + "CPU min MHz:": "1500.0000", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "48 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "AMD-V", + "Frequency boost:": "enabled", + "NUMA node0 CPU(s):": "0-31,64-95", + "NUMA node1 CPU(s):": "32-63,96-127", + "Vulnerability Mds:": "Not affected", + "Core(s) per socket:": "32", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Not affected", + "On-line CPU(s) list:": "0-2,5-32,34-63,65,66,69-96,98-127", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "3,4,33,64,67,68,97", + "Vulnerability Meltdown:": "Not affected", + "Vulnerability Retbleed:": "Not affected", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; Retpolines, IBPB conditional, IBRS_FW, STIBP always-on, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "Not affected", + "Vulnerability Mmio stale data:": "Not affected", + "Vulnerability Tsx async abort:": "Not affected", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [ + { + "id": 0, + "name": "NVIDIA RTX A5000", + "uuid": "GPU-782cd3ea-0ea7-bd75-f8f2-54d75566f9c2", + "driver": "525.125.06", + "serial": "1324921081899", + "memory_total_MiB": 24564 + } + ], + "num_gpus": 1 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null + }, + { + "proof_id": "26f07d1b-4740-4410-9319-38c99c80c474", + "circuit_name": "circom-multiplier2", + "circuit_id": "03dcdd85-9300-440b-8353-91bea904d8c5", + "circuit_type": "circom", + "date_created": "2024-01-15T01:44:45.581Z", + "perform_verify": false, + "status": "Ready", + "compute_time": "P0DT00H00M06.435592S", + "compute_times": { + "prove": 6.2201853562146425, + "total": 6.502878189086914, + "queued": 0.652189, + "clean_up": 0.00024727731943130493, + "file_setup": 0.2532728649675846, + "save_results": 0.0022235289216041565, + "generate_witness_c": 0.026703273877501488 + }, + "file_sizes": { + "proof": 708, + "total": 714, + "public": 6, + "total_gb": 7.14e-7, + "total_mb": 0.000714 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "proof_input": null, + "proof": null, + "prover_implementation": { + "name": "GPU Tachyonic", + "smbc": 6, + "smcurve": "spparkx.alt_bn128", + "smreplicate": false + }, + "public": null, + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nopl nonstop_tsc cpuid extd_apicid aperfmperf rapl pni pclmulqdq monitor ssse3 fma cx16 pcid sse4_1 sse4_2 movbe popcnt aes xsave avx f16c rdrand lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt tce topoext perfctr_core perfctr_nb bpext perfctr_llc mwaitx cpb cat_l3 cdp_l3 invpcid_single hw_pstate ssbd mba ibrs ibpb stibp vmmcall fsgsbase bmi1 avx2 smep bmi2 invpcid cqm rdt_a rdseed adx smap clflushopt clwb sha_ni xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local clzero irperf xsaveerptr rdpru wbnoinvd amd_ppin brs arat npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold v_vmsave_vmload vgif v_spec_ctrl umip pku ospke vaes vpclmulqdq rdpid overflow_recov succor smca", + "Model:": "1", + "CPU(s):": "128", + "BogoMIPS:": "5200.17", + "L2 cache:": "32 MiB (64 instances)", + "L3 cache:": "256 MiB (8 instances)", + "Stepping:": "1", + "L1d cache:": "2 MiB (64 instances)", + "L1i cache:": "2 MiB (64 instances)", + "Socket(s):": "2", + "Vendor ID:": "AuthenticAMD", + "Byte Order:": "Little Endian", + "CPU family:": "25", + "Model name:": "AMD EPYC 7513 32-Core Processor", + "CPU max MHz:": "3681.6399", + "CPU min MHz:": "1500.0000", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "48 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "AMD-V", + "Frequency boost:": "enabled", + "NUMA node0 CPU(s):": "0-31,64-95", + "NUMA node1 CPU(s):": "32-63,96-127", + "Vulnerability Mds:": "Not affected", + "Core(s) per socket:": "32", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Not affected", + "On-line CPU(s) list:": "0-2,5-32,34-63,65,66,69-96,98-127", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "3,4,33,64,67,68,97", + "Vulnerability Meltdown:": "Not affected", + "Vulnerability Retbleed:": "Not affected", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; Retpolines, IBPB conditional, IBRS_FW, STIBP always-on, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "Not affected", + "Vulnerability Mmio stale data:": "Not affected", + "Vulnerability Tsx async abort:": "Not affected", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [ + { + "id": 0, + "name": "NVIDIA RTX A5000", + "uuid": "GPU-782cd3ea-0ea7-bd75-f8f2-54d75566f9c2", + "driver": "525.125.06", + "serial": "1324921081899", + "memory_total_MiB": 24564 + } + ], + "num_gpus": 1 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null + }, + { + "proof_id": "f0e9a8ef-a9f7-45a1-9d24-25822ff56d47", + "circuit_name": "circom-multiplier2", + "circuit_id": "a7c1a9a9-2df3-4f76-9be0-1bb8456c22db", + "circuit_type": "circom", + "date_created": "2024-01-15T01:44:29.960Z", + "perform_verify": false, + "status": "Ready", + "compute_time": "P0DT00H00M06.484678S", + "compute_times": { + "prove": 6.229190753772855, + "total": 6.550728781148791, + "queued": 0.657459, + "clean_up": 0.0002836957573890686, + "file_setup": 0.2656614538282156, + "save_results": 0.0025900565087795258, + "generate_witness_c": 0.052704716101288795 + }, + "file_sizes": { + "proof": 710, + "total": 716, + "public": 6, + "total_gb": 7.16e-7, + "total_mb": 0.000716 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "proof_input": null, + "proof": null, + "prover_implementation": { + "name": "GPU Tachyonic", + "smbc": 6, + "smcurve": "spparkx.alt_bn128", + "smreplicate": false + }, + "public": null, + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nopl nonstop_tsc cpuid extd_apicid aperfmperf rapl pni pclmulqdq monitor ssse3 fma cx16 pcid sse4_1 sse4_2 movbe popcnt aes xsave avx f16c rdrand lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt tce topoext perfctr_core perfctr_nb bpext perfctr_llc mwaitx cpb cat_l3 cdp_l3 invpcid_single hw_pstate ssbd mba ibrs ibpb stibp vmmcall fsgsbase bmi1 avx2 smep bmi2 invpcid cqm rdt_a rdseed adx smap clflushopt clwb sha_ni xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local clzero irperf xsaveerptr rdpru wbnoinvd amd_ppin brs arat npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold v_vmsave_vmload vgif v_spec_ctrl umip pku ospke vaes vpclmulqdq rdpid overflow_recov succor smca", + "Model:": "1", + "CPU(s):": "128", + "BogoMIPS:": "5200.17", + "L2 cache:": "32 MiB (64 instances)", + "L3 cache:": "256 MiB (8 instances)", + "Stepping:": "1", + "L1d cache:": "2 MiB (64 instances)", + "L1i cache:": "2 MiB (64 instances)", + "Socket(s):": "2", + "Vendor ID:": "AuthenticAMD", + "Byte Order:": "Little Endian", + "CPU family:": "25", + "Model name:": "AMD EPYC 7513 32-Core Processor", + "CPU max MHz:": "3681.6399", + "CPU min MHz:": "1500.0000", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "48 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "AMD-V", + "Frequency boost:": "enabled", + "NUMA node0 CPU(s):": "0-31,64-95", + "NUMA node1 CPU(s):": "32-63,96-127", + "Vulnerability Mds:": "Not affected", + "Core(s) per socket:": "32", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Not affected", + "On-line CPU(s) list:": "0-2,5-32,34-63,65,66,69-96,98-127", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "3,4,33,64,67,68,97", + "Vulnerability Meltdown:": "Not affected", + "Vulnerability Retbleed:": "Not affected", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; Retpolines, IBPB conditional, IBRS_FW, STIBP always-on, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "Not affected", + "Vulnerability Mmio stale data:": "Not affected", + "Vulnerability Tsx async abort:": "Not affected", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [ + { + "id": 0, + "name": "NVIDIA RTX A5000", + "uuid": "GPU-782cd3ea-0ea7-bd75-f8f2-54d75566f9c2", + "driver": "525.125.06", + "serial": "1324921081899", + "memory_total_MiB": 24564 + } + ], + "num_gpus": 1 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null + }, + { + "proof_id": "f8406ce7-d14a-4fa6-9677-1d57449c0e92", + "circuit_name": "circom-multiplier2", + "circuit_id": "723f695f-ceca-435e-9423-fa9623b26962", + "circuit_type": "circom", + "date_created": "2024-01-15T01:28:35.809Z", + "perform_verify": false, + "status": "Ready", + "compute_time": "P0DT00H00M06.078477S", + "compute_times": { + "prove": 5.902009887620807, + "total": 6.183570355176926, + "queued": 6.122612, + "clean_up": 0.0002631358802318573, + "file_setup": 0.26931122317910194, + "save_results": 0.0026443954557180405, + "generate_witness_c": 0.009012777358293533 + }, + "file_sizes": { + "proof": 708, + "total": 714, + "public": 6, + "total_gb": 7.14e-7, + "total_mb": 0.000714 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "proof_input": null, + "proof": null, + "prover_implementation": { + "name": "GPU Tachyonic", + "smbc": 6, + "smcurve": "spparkx.alt_bn128", + "smreplicate": false + }, + "public": null, + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nopl nonstop_tsc cpuid extd_apicid aperfmperf rapl pni pclmulqdq monitor ssse3 fma cx16 pcid sse4_1 sse4_2 movbe popcnt aes xsave avx f16c rdrand lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt tce topoext perfctr_core perfctr_nb bpext perfctr_llc mwaitx cpb cat_l3 cdp_l3 invpcid_single hw_pstate ssbd mba ibrs ibpb stibp vmmcall fsgsbase bmi1 avx2 smep bmi2 invpcid cqm rdt_a rdseed adx smap clflushopt clwb sha_ni xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local clzero irperf xsaveerptr rdpru wbnoinvd amd_ppin brs arat npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold v_vmsave_vmload vgif v_spec_ctrl umip pku ospke vaes vpclmulqdq rdpid overflow_recov succor smca", + "Model:": "1", + "CPU(s):": "128", + "BogoMIPS:": "5199.98", + "L2 cache:": "32 MiB (64 instances)", + "L3 cache:": "256 MiB (8 instances)", + "Stepping:": "1", + "L1d cache:": "2 MiB (64 instances)", + "L1i cache:": "2 MiB (64 instances)", + "Socket(s):": "2", + "Vendor ID:": "AuthenticAMD", + "Byte Order:": "Little Endian", + "CPU family:": "25", + "Model name:": "AMD EPYC 7513 32-Core Processor", + "CPU max MHz:": "3681.6399", + "CPU min MHz:": "1500.0000", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "48 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "AMD-V", + "Frequency boost:": "enabled", + "NUMA node0 CPU(s):": "0-31,64-95", + "NUMA node1 CPU(s):": "32-63,96-127", + "Vulnerability Mds:": "Not affected", + "Core(s) per socket:": "32", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Not affected", + "On-line CPU(s) list:": "0,4-32,34-63,69-96,98-127", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "1-3,33,64-68,97", + "Vulnerability Meltdown:": "Not affected", + "Vulnerability Retbleed:": "Not affected", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; Retpolines, IBPB conditional, IBRS_FW, STIBP always-on, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "Not affected", + "Vulnerability Mmio stale data:": "Not affected", + "Vulnerability Tsx async abort:": "Not affected", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [ + { + "id": 0, + "name": "NVIDIA RTX A5000", + "uuid": "GPU-3ae041c5-a9ec-129a-cbf6-33b374bc92c0", + "driver": "525.125.06", + "serial": "1325121129330", + "memory_total_MiB": 24564 + } + ], + "num_gpus": 1 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null + }, + { + "proof_id": "bc95c37e-6335-4962-a45e-ce0e92856220", + "circuit_name": "circom-multiplier2", + "circuit_id": "1f4e0b8e-d4a1-40fa-b32b-a8d263ca516f", + "circuit_type": "circom", + "date_created": "2024-01-15T01:28:33.921Z", + "perform_verify": false, + "status": "Ready", + "compute_time": "P0DT00H00M06.160198S", + "compute_times": { + "prove": 5.963096780702472, + "total": 6.232641618698835, + "queued": 0.650062, + "clean_up": 0.00031645968556404114, + "file_setup": 0.24531847052276134, + "save_results": 0.003001151606440544, + "generate_witness_c": 0.020530829206109047 + }, + "file_sizes": { + "proof": 708, + "total": 714, + "public": 6, + "total_gb": 7.14e-7, + "total_mb": 0.000714 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "proof_input": null, + "proof": null, + "prover_implementation": { + "name": "GPU Tachyonic", + "smbc": 6, + "smcurve": "spparkx.alt_bn128", + "smreplicate": false + }, + "public": null, + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nopl nonstop_tsc cpuid extd_apicid aperfmperf rapl pni pclmulqdq monitor ssse3 fma cx16 pcid sse4_1 sse4_2 movbe popcnt aes xsave avx f16c rdrand lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt tce topoext perfctr_core perfctr_nb bpext perfctr_llc mwaitx cpb cat_l3 cdp_l3 invpcid_single hw_pstate ssbd mba ibrs ibpb stibp vmmcall fsgsbase bmi1 avx2 smep bmi2 invpcid cqm rdt_a rdseed adx smap clflushopt clwb sha_ni xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local clzero irperf xsaveerptr rdpru wbnoinvd amd_ppin brs arat npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold v_vmsave_vmload vgif v_spec_ctrl umip pku ospke vaes vpclmulqdq rdpid overflow_recov succor smca", + "Model:": "1", + "CPU(s):": "128", + "BogoMIPS:": "5199.98", + "L2 cache:": "32 MiB (64 instances)", + "L3 cache:": "256 MiB (8 instances)", + "Stepping:": "1", + "L1d cache:": "2 MiB (64 instances)", + "L1i cache:": "2 MiB (64 instances)", + "Socket(s):": "2", + "Vendor ID:": "AuthenticAMD", + "Byte Order:": "Little Endian", + "CPU family:": "25", + "Model name:": "AMD EPYC 7513 32-Core Processor", + "CPU max MHz:": "3681.6399", + "CPU min MHz:": "1500.0000", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "48 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "AMD-V", + "Frequency boost:": "enabled", + "NUMA node0 CPU(s):": "0-31,64-95", + "NUMA node1 CPU(s):": "32-63,96-127", + "Vulnerability Mds:": "Not affected", + "Core(s) per socket:": "32", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Not affected", + "On-line CPU(s) list:": "0,4-32,34-63,69-96,98-127", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "1-3,33,64-68,97", + "Vulnerability Meltdown:": "Not affected", + "Vulnerability Retbleed:": "Not affected", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; Retpolines, IBPB conditional, IBRS_FW, STIBP always-on, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "Not affected", + "Vulnerability Mmio stale data:": "Not affected", + "Vulnerability Tsx async abort:": "Not affected", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [ + { + "id": 0, + "name": "NVIDIA RTX A5000", + "uuid": "GPU-3ae041c5-a9ec-129a-cbf6-33b374bc92c0", + "driver": "525.125.06", + "serial": "1325121129330", + "memory_total_MiB": 24564 + } + ], + "num_gpus": 1 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null + }, + { + "proof_id": "92e2e996-b3cf-465f-a4c0-978a5566287d", + "circuit_name": "circom-multiplier2", + "circuit_id": "36ed7747-01de-4272-bd8e-e28802d5c668", + "circuit_type": "circom", + "date_created": "2024-01-15T01:25:52.815Z", + "perform_verify": false, + "status": "Ready", + "compute_time": "P0DT00H00M06.175574S", + "compute_times": { + "prove": 5.9231167789548635, + "total": 6.24663576297462, + "queued": 0.698281, + "clean_up": 0.0002771075814962387, + "file_setup": 0.29058355651795864, + "save_results": 0.002341846004128456, + "generate_witness_c": 0.029908066615462303 + }, + "file_sizes": { + "proof": 707, + "total": 713, + "public": 6, + "total_gb": 7.13e-7, + "total_mb": 0.000713 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "proof_input": null, + "proof": null, + "prover_implementation": { + "name": "GPU Tachyonic", + "smbc": 6, + "smcurve": "spparkx.alt_bn128", + "smreplicate": false + }, + "public": null, + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nopl nonstop_tsc cpuid extd_apicid aperfmperf rapl pni pclmulqdq monitor ssse3 fma cx16 pcid sse4_1 sse4_2 movbe popcnt aes xsave avx f16c rdrand lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt tce topoext perfctr_core perfctr_nb bpext perfctr_llc mwaitx cpb cat_l3 cdp_l3 invpcid_single hw_pstate ssbd mba ibrs ibpb stibp vmmcall fsgsbase bmi1 avx2 smep bmi2 invpcid cqm rdt_a rdseed adx smap clflushopt clwb sha_ni xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local clzero irperf xsaveerptr rdpru wbnoinvd amd_ppin brs arat npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold v_vmsave_vmload vgif v_spec_ctrl umip pku ospke vaes vpclmulqdq rdpid overflow_recov succor smca", + "Model:": "1", + "CPU(s):": "128", + "BogoMIPS:": "5199.98", + "L2 cache:": "32 MiB (64 instances)", + "L3 cache:": "256 MiB (8 instances)", + "Stepping:": "1", + "L1d cache:": "2 MiB (64 instances)", + "L1i cache:": "2 MiB (64 instances)", + "Socket(s):": "2", + "Vendor ID:": "AuthenticAMD", + "Byte Order:": "Little Endian", + "CPU family:": "25", + "Model name:": "AMD EPYC 7513 32-Core Processor", + "CPU max MHz:": "3681.6399", + "CPU min MHz:": "1500.0000", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "48 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "AMD-V", + "Frequency boost:": "enabled", + "NUMA node0 CPU(s):": "0-31,64-95", + "NUMA node1 CPU(s):": "32-63,96-127", + "Vulnerability Mds:": "Not affected", + "Core(s) per socket:": "32", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Not affected", + "On-line CPU(s) list:": "0,4-32,34-63,69-96,98-127", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "1-3,33,64-68,97", + "Vulnerability Meltdown:": "Not affected", + "Vulnerability Retbleed:": "Not affected", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; Retpolines, IBPB conditional, IBRS_FW, STIBP always-on, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "Not affected", + "Vulnerability Mmio stale data:": "Not affected", + "Vulnerability Tsx async abort:": "Not affected", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [ + { + "id": 0, + "name": "NVIDIA RTX A5000", + "uuid": "GPU-3ae041c5-a9ec-129a-cbf6-33b374bc92c0", + "driver": "525.125.06", + "serial": "1325121129330", + "memory_total_MiB": 24564 + } + ], + "num_gpus": 1 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null + }, + { + "proof_id": "82de6aa2-4108-43aa-85f0-0bc9c8e6fb8e", + "circuit_name": "circom-multiplier2", + "circuit_id": "eb7be2ed-0d7e-4036-a5dc-3b36b0d9907c", + "circuit_type": "circom", + "date_created": "2024-01-15T01:24:19.052Z", + "perform_verify": false, + "status": "Ready", + "compute_time": "P0DT00H00M06.115018S", + "compute_times": { + "prove": 5.91022140905261, + "total": 6.194757051765919, + "queued": 0.684503, + "clean_up": 0.00032767653465270996, + "file_setup": 0.2622530199587345, + "save_results": 0.003049323335289955, + "generate_witness_c": 0.018631482496857643 + }, + "file_sizes": { + "proof": 707, + "total": 713, + "public": 6, + "total_gb": 7.13e-7, + "total_mb": 0.000713 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "proof_input": null, + "proof": null, + "prover_implementation": { + "name": "GPU Tachyonic", + "smbc": 6, + "smcurve": "spparkx.alt_bn128", + "smreplicate": false + }, + "public": null, + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nopl nonstop_tsc cpuid extd_apicid aperfmperf rapl pni pclmulqdq monitor ssse3 fma cx16 pcid sse4_1 sse4_2 movbe popcnt aes xsave avx f16c rdrand lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt tce topoext perfctr_core perfctr_nb bpext perfctr_llc mwaitx cpb cat_l3 cdp_l3 invpcid_single hw_pstate ssbd mba ibrs ibpb stibp vmmcall fsgsbase bmi1 avx2 smep bmi2 invpcid cqm rdt_a rdseed adx smap clflushopt clwb sha_ni xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local clzero irperf xsaveerptr rdpru wbnoinvd amd_ppin brs arat npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold v_vmsave_vmload vgif v_spec_ctrl umip pku ospke vaes vpclmulqdq rdpid overflow_recov succor smca", + "Model:": "1", + "CPU(s):": "128", + "BogoMIPS:": "5199.98", + "L2 cache:": "32 MiB (64 instances)", + "L3 cache:": "256 MiB (8 instances)", + "Stepping:": "1", + "L1d cache:": "2 MiB (64 instances)", + "L1i cache:": "2 MiB (64 instances)", + "Socket(s):": "2", + "Vendor ID:": "AuthenticAMD", + "Byte Order:": "Little Endian", + "CPU family:": "25", + "Model name:": "AMD EPYC 7513 32-Core Processor", + "CPU max MHz:": "3681.6399", + "CPU min MHz:": "1500.0000", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "48 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "AMD-V", + "Frequency boost:": "enabled", + "NUMA node0 CPU(s):": "0-31,64-95", + "NUMA node1 CPU(s):": "32-63,96-127", + "Vulnerability Mds:": "Not affected", + "Core(s) per socket:": "32", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Not affected", + "On-line CPU(s) list:": "0,4-32,34-63,69-96,98-127", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "1-3,33,64-68,97", + "Vulnerability Meltdown:": "Not affected", + "Vulnerability Retbleed:": "Not affected", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; Retpolines, IBPB conditional, IBRS_FW, STIBP always-on, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "Not affected", + "Vulnerability Mmio stale data:": "Not affected", + "Vulnerability Tsx async abort:": "Not affected", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [ + { + "id": 0, + "name": "NVIDIA RTX A5000", + "uuid": "GPU-3ae041c5-a9ec-129a-cbf6-33b374bc92c0", + "driver": "525.125.06", + "serial": "1325121129330", + "memory_total_MiB": 24564 + } + ], + "num_gpus": 1 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null + }, + { + "proof_id": "250bec19-3e55-44aa-8259-e0c16f81740a", + "circuit_name": "circom-multiplier2", + "circuit_id": "11e78b06-44fb-44b4-b85f-d681e677482c", + "circuit_type": "circom", + "date_created": "2024-01-15T01:21:13.615Z", + "perform_verify": false, + "status": "Ready", + "compute_time": "P0DT00H00M06.117480S", + "compute_times": { + "prove": 5.914364781230688, + "total": 6.191053604707122, + "queued": 15.514631, + "clean_up": 0.00021071918308734894, + "file_setup": 0.24732953310012817, + "save_results": 0.0019527468830347061, + "generate_witness_c": 0.026822445914149284 + }, + "file_sizes": { + "proof": 707, + "total": 713, + "public": 6, + "total_gb": 7.13e-7, + "total_mb": 0.000713 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "proof_input": null, + "proof": null, + "prover_implementation": { + "name": "GPU Tachyonic", + "smbc": 6, + "smcurve": "spparkx.alt_bn128", + "smreplicate": false + }, + "public": null, + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nopl nonstop_tsc cpuid extd_apicid aperfmperf rapl pni pclmulqdq monitor ssse3 fma cx16 pcid sse4_1 sse4_2 movbe popcnt aes xsave avx f16c rdrand lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt tce topoext perfctr_core perfctr_nb bpext perfctr_llc mwaitx cpb cat_l3 cdp_l3 invpcid_single hw_pstate ssbd mba ibrs ibpb stibp vmmcall fsgsbase bmi1 avx2 smep bmi2 invpcid cqm rdt_a rdseed adx smap clflushopt clwb sha_ni xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local clzero irperf xsaveerptr rdpru wbnoinvd amd_ppin brs arat npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold v_vmsave_vmload vgif v_spec_ctrl umip pku ospke vaes vpclmulqdq rdpid overflow_recov succor smca", + "Model:": "1", + "CPU(s):": "128", + "BogoMIPS:": "5199.98", + "L2 cache:": "32 MiB (64 instances)", + "L3 cache:": "256 MiB (8 instances)", + "Stepping:": "1", + "L1d cache:": "2 MiB (64 instances)", + "L1i cache:": "2 MiB (64 instances)", + "Socket(s):": "2", + "Vendor ID:": "AuthenticAMD", + "Byte Order:": "Little Endian", + "CPU family:": "25", + "Model name:": "AMD EPYC 7513 32-Core Processor", + "CPU max MHz:": "3681.6399", + "CPU min MHz:": "1500.0000", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "48 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "AMD-V", + "Frequency boost:": "enabled", + "NUMA node0 CPU(s):": "0-31,64-95", + "NUMA node1 CPU(s):": "32-63,96-127", + "Vulnerability Mds:": "Not affected", + "Core(s) per socket:": "32", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Not affected", + "On-line CPU(s) list:": "0,4-32,34-63,69-96,98-127", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "1-3,33,64-68,97", + "Vulnerability Meltdown:": "Not affected", + "Vulnerability Retbleed:": "Not affected", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; Retpolines, IBPB conditional, IBRS_FW, STIBP always-on, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "Not affected", + "Vulnerability Mmio stale data:": "Not affected", + "Vulnerability Tsx async abort:": "Not affected", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [ + { + "id": 0, + "name": "NVIDIA RTX A5000", + "uuid": "GPU-3ae041c5-a9ec-129a-cbf6-33b374bc92c0", + "driver": "525.125.06", + "serial": "1325121129330", + "memory_total_MiB": 24564 + } + ], + "num_gpus": 1 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null + } + ], + "rawHeaders": [ + "Content-Length", + "112612", + "Content-Type", + "application/json; charset=utf-8", + "Date", + "Mon, 15 Jan 2024 13:31:25 GMT", + "Referrer-Policy", + "same-origin", + "Server", + "gunicorn", + "Vary", + "Cookie, origin", + "X-Content-Type-Options", + "nosniff", + "X-Frame-Options", + "SAMEORIGIN", + "Connection", + "close" + ], + "responseIsBinary": false + }, + { + "scope": "https://sindri.app:443", + "method": "GET", + "path": "/api/v1/proof/list?include_proof_input=false&include_proof=false&include_public=false&include_verification_key=false", + "body": "", + "status": 200, + "response": [ + { + "proof_id": "a0cd0c31-178d-40ab-befd-56240cfac47b", + "circuit_name": "circom-multiplier2", + "circuit_id": "ddd1b9a9-83e6-41d1-8936-3bff88aa6921", + "circuit_type": "circom", + "date_created": "2024-01-15T13:29:36.311Z", + "perform_verify": false, + "status": "Ready", + "compute_time": "P0DT00H00M02.092256S", + "compute_times": { + "prove": 0.36259699426591396, + "total": 2.1656957883387804, + "queued": 5.830407, + "clean_up": 0.0003967471420764923, + "file_setup": 0.6623526718467474, + "save_results": 0.18246298655867577, + "generate_witness_c": 0.9574985150247812 + }, + "file_sizes": { + "proof": 705, + "total": 711, + "public": 6, + "total_gb": 7.11e-7, + "total_mb": 0.000711 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "proof_input": null, + "proof": null, + "prover_implementation": { + "name": "GPU Tachyonic", + "smbc": 6, + "smcurve": "spparkx.alt_bn128", + "smreplicate": false + }, + "public": null, + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nopl nonstop_tsc cpuid extd_apicid aperfmperf rapl pni pclmulqdq monitor ssse3 fma cx16 pcid sse4_1 sse4_2 movbe popcnt aes xsave avx f16c rdrand lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt tce topoext perfctr_core perfctr_nb bpext perfctr_llc mwaitx cpb cat_l3 cdp_l3 invpcid_single hw_pstate ssbd mba ibrs ibpb stibp vmmcall fsgsbase bmi1 avx2 smep bmi2 invpcid cqm rdt_a rdseed adx smap clflushopt clwb sha_ni xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local clzero irperf xsaveerptr rdpru wbnoinvd amd_ppin brs arat npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold v_vmsave_vmload vgif v_spec_ctrl umip pku ospke vaes vpclmulqdq rdpid overflow_recov succor smca", + "Model:": "1", + "CPU(s):": "128", + "BogoMIPS:": "5190.16", + "L2 cache:": "32 MiB (64 instances)", + "L3 cache:": "256 MiB (8 instances)", + "Stepping:": "1", + "L1d cache:": "2 MiB (64 instances)", + "L1i cache:": "2 MiB (64 instances)", + "Socket(s):": "2", + "Vendor ID:": "AuthenticAMD", + "Byte Order:": "Little Endian", + "CPU family:": "25", + "Model name:": "AMD EPYC 7513 32-Core Processor", + "CPU max MHz:": "3681.6399", + "CPU min MHz:": "1500.0000", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "48 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "AMD-V", + "Frequency boost:": "enabled", + "NUMA node0 CPU(s):": "0-31,64-95", + "NUMA node1 CPU(s):": "32-63,96-127", + "Vulnerability Mds:": "Not affected", + "Core(s) per socket:": "32", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Not affected", + "On-line CPU(s) list:": "0,2-4,6-31,35-64,66-68,70-95,99-127", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "1,5,32-34,65,69,96-98", + "Vulnerability Meltdown:": "Not affected", + "Vulnerability Retbleed:": "Not affected", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; Retpolines, IBPB conditional, IBRS_FW, STIBP always-on, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "Not affected", + "Vulnerability Mmio stale data:": "Not affected", + "Vulnerability Tsx async abort:": "Not affected", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [ + { + "id": 0, + "name": "NVIDIA RTX A6000", + "uuid": "GPU-bfa26f0f-c563-4d7b-2157-ca283ea42f01", + "driver": "525.125.06", + "serial": "1325121022674", + "memory_total_MiB": 49140 + } + ], + "num_gpus": 1 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null + }, + { + "proof_id": "7a40011c-8526-4c26-a0ac-d9666885eaf0", + "circuit_name": "circom-multiplier2", + "circuit_id": "96444cdd-027c-4c3f-a682-4e72d16bf3a5", + "circuit_type": "circom", + "date_created": "2024-01-15T13:29:34.880Z", + "perform_verify": false, + "status": "Ready", + "compute_time": "P0DT00H00M03.002676S", + "compute_times": { + "prove": 0.40854700468480587, + "total": 3.068965345621109, + "queued": 2.266619, + "clean_up": 0.00030806101858615875, + "file_setup": 0.7846233639866114, + "save_results": 0.18261023424565792, + "generate_witness_c": 1.6924956049770117 + }, + "file_sizes": { + "proof": 706, + "total": 712, + "public": 6, + "total_gb": 7.12e-7, + "total_mb": 0.000712 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "proof_input": null, + "proof": null, + "prover_implementation": { + "name": "GPU Tachyonic", + "smbc": 6, + "smcurve": "spparkx.alt_bn128", + "smreplicate": false + }, + "public": null, + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nopl nonstop_tsc cpuid extd_apicid aperfmperf rapl pni pclmulqdq monitor ssse3 fma cx16 pcid sse4_1 sse4_2 movbe popcnt aes xsave avx f16c rdrand lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt tce topoext perfctr_core perfctr_nb bpext perfctr_llc mwaitx cpb cat_l3 cdp_l3 invpcid_single hw_pstate ssbd mba ibrs ibpb stibp vmmcall fsgsbase bmi1 avx2 smep bmi2 invpcid cqm rdt_a rdseed adx smap clflushopt clwb sha_ni xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local clzero irperf xsaveerptr rdpru wbnoinvd amd_ppin brs arat npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold v_vmsave_vmload vgif v_spec_ctrl umip pku ospke vaes vpclmulqdq rdpid overflow_recov succor smca", + "Model:": "1", + "CPU(s):": "128", + "BogoMIPS:": "5190.16", + "L2 cache:": "32 MiB (64 instances)", + "L3 cache:": "256 MiB (8 instances)", + "Stepping:": "1", + "L1d cache:": "2 MiB (64 instances)", + "L1i cache:": "2 MiB (64 instances)", + "Socket(s):": "2", + "Vendor ID:": "AuthenticAMD", + "Byte Order:": "Little Endian", + "CPU family:": "25", + "Model name:": "AMD EPYC 7513 32-Core Processor", + "CPU max MHz:": "3681.6399", + "CPU min MHz:": "1500.0000", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "48 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "AMD-V", + "Frequency boost:": "enabled", + "NUMA node0 CPU(s):": "0-31,64-95", + "NUMA node1 CPU(s):": "32-63,96-127", + "Vulnerability Mds:": "Not affected", + "Core(s) per socket:": "32", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Not affected", + "On-line CPU(s) list:": "0,2-4,6-31,35-64,66-68,70-95,99-127", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "1,5,32-34,65,69,96-98", + "Vulnerability Meltdown:": "Not affected", + "Vulnerability Retbleed:": "Not affected", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; Retpolines, IBPB conditional, IBRS_FW, STIBP always-on, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "Not affected", + "Vulnerability Mmio stale data:": "Not affected", + "Vulnerability Tsx async abort:": "Not affected", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [ + { + "id": 0, + "name": "NVIDIA RTX A6000", + "uuid": "GPU-bfa26f0f-c563-4d7b-2157-ca283ea42f01", + "driver": "525.125.06", + "serial": "1325121022674", + "memory_total_MiB": 49140 + } + ], + "num_gpus": 1 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null + }, + { + "proof_id": "c3ba6384-7192-4ae6-8b0e-98ce27631011", + "circuit_name": "circom-multiplier2", + "circuit_id": "7ef187a6-8c98-453b-8a71-a9eaaecc0e34", + "circuit_type": "circom", + "date_created": "2024-01-15T13:29:30.819Z", + "perform_verify": false, + "status": "Ready", + "compute_time": "P0DT00H00M03.202003S", + "compute_times": { + "prove": 0.46431767754256725, + "total": 3.2886892426759005, + "queued": 1.201985, + "clean_up": 0.0002929028123617172, + "file_setup": 0.8507254235446453, + "save_results": 0.18203313648700714, + "generate_witness_c": 1.7910168208181858 + }, + "file_sizes": { + "proof": 709, + "total": 715, + "public": 6, + "total_gb": 7.15e-7, + "total_mb": 0.000715 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "proof_input": null, + "proof": null, + "prover_implementation": { + "name": "GPU Tachyonic", + "smbc": 6, + "smcurve": "spparkx.alt_bn128", + "smreplicate": false + }, + "public": null, + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nopl nonstop_tsc cpuid extd_apicid aperfmperf rapl pni pclmulqdq monitor ssse3 fma cx16 pcid sse4_1 sse4_2 movbe popcnt aes xsave avx f16c rdrand lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt tce topoext perfctr_core perfctr_nb bpext perfctr_llc mwaitx cpb cat_l3 cdp_l3 invpcid_single hw_pstate ssbd mba ibrs ibpb stibp vmmcall fsgsbase bmi1 avx2 smep bmi2 invpcid cqm rdt_a rdseed adx smap clflushopt clwb sha_ni xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local clzero irperf xsaveerptr rdpru wbnoinvd amd_ppin brs arat npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold v_vmsave_vmload vgif v_spec_ctrl umip pku ospke vaes vpclmulqdq rdpid overflow_recov succor smca", + "Model:": "1", + "CPU(s):": "128", + "BogoMIPS:": "5190.16", + "L2 cache:": "32 MiB (64 instances)", + "L3 cache:": "256 MiB (8 instances)", + "Stepping:": "1", + "L1d cache:": "2 MiB (64 instances)", + "L1i cache:": "2 MiB (64 instances)", + "Socket(s):": "2", + "Vendor ID:": "AuthenticAMD", + "Byte Order:": "Little Endian", + "CPU family:": "25", + "Model name:": "AMD EPYC 7513 32-Core Processor", + "CPU max MHz:": "3681.6399", + "CPU min MHz:": "1500.0000", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "48 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "AMD-V", + "Frequency boost:": "enabled", + "NUMA node0 CPU(s):": "0-31,64-95", + "NUMA node1 CPU(s):": "32-63,96-127", + "Vulnerability Mds:": "Not affected", + "Core(s) per socket:": "32", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Not affected", + "On-line CPU(s) list:": "0,2-4,6-31,35-64,66-68,70-95,99-127", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "1,5,32-34,65,69,96-98", + "Vulnerability Meltdown:": "Not affected", + "Vulnerability Retbleed:": "Not affected", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; Retpolines, IBPB conditional, IBRS_FW, STIBP always-on, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "Not affected", + "Vulnerability Mmio stale data:": "Not affected", + "Vulnerability Tsx async abort:": "Not affected", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [ + { + "id": 0, + "name": "NVIDIA RTX A6000", + "uuid": "GPU-bfa26f0f-c563-4d7b-2157-ca283ea42f01", + "driver": "525.125.06", + "serial": "1325121022674", + "memory_total_MiB": 49140 + } + ], + "num_gpus": 1 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null + }, + { + "proof_id": "ab24f58c-fd8c-4d6b-afb9-6fe8bc786b4a", + "circuit_name": "circom-multiplier2", + "circuit_id": "24294db3-7afa-418b-bf0d-1243f5886a87", + "circuit_type": "circom", + "date_created": "2024-01-15T13:29:09.850Z", + "perform_verify": false, + "status": "Ready", + "compute_time": "P0DT00H00M03.165555S", + "compute_times": { + "prove": 0.39277893863618374, + "total": 3.2604714408516884, + "queued": 1.166733, + "clean_up": 0.000250350683927536, + "file_setup": 0.9157394412904978, + "save_results": 0.1821883488446474, + "generate_witness_c": 1.7691551242023706 + }, + "file_sizes": { + "proof": 708, + "total": 714, + "public": 6, + "total_gb": 7.14e-7, + "total_mb": 0.000714 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "proof_input": null, + "proof": null, + "prover_implementation": { + "name": "GPU Tachyonic", + "smbc": 6, + "smcurve": "spparkx.alt_bn128", + "smreplicate": false + }, + "public": null, + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nopl nonstop_tsc cpuid extd_apicid aperfmperf rapl pni pclmulqdq monitor ssse3 fma cx16 pcid sse4_1 sse4_2 movbe popcnt aes xsave avx f16c rdrand lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt tce topoext perfctr_core perfctr_nb bpext perfctr_llc mwaitx cpb cat_l3 cdp_l3 invpcid_single hw_pstate ssbd mba ibrs ibpb stibp vmmcall fsgsbase bmi1 avx2 smep bmi2 invpcid cqm rdt_a rdseed adx smap clflushopt clwb sha_ni xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local clzero irperf xsaveerptr rdpru wbnoinvd amd_ppin brs arat npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold v_vmsave_vmload vgif v_spec_ctrl umip pku ospke vaes vpclmulqdq rdpid overflow_recov succor smca", + "Model:": "1", + "CPU(s):": "128", + "BogoMIPS:": "5190.16", + "L2 cache:": "32 MiB (64 instances)", + "L3 cache:": "256 MiB (8 instances)", + "Stepping:": "1", + "L1d cache:": "2 MiB (64 instances)", + "L1i cache:": "2 MiB (64 instances)", + "Socket(s):": "2", + "Vendor ID:": "AuthenticAMD", + "Byte Order:": "Little Endian", + "CPU family:": "25", + "Model name:": "AMD EPYC 7513 32-Core Processor", + "CPU max MHz:": "3681.6399", + "CPU min MHz:": "1500.0000", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "48 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "AMD-V", + "Frequency boost:": "enabled", + "NUMA node0 CPU(s):": "0-31,64-95", + "NUMA node1 CPU(s):": "32-63,96-127", + "Vulnerability Mds:": "Not affected", + "Core(s) per socket:": "32", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Not affected", + "On-line CPU(s) list:": "0,2-4,6-31,35-64,66-68,70-95,99-127", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "1,5,32-34,65,69,96-98", + "Vulnerability Meltdown:": "Not affected", + "Vulnerability Retbleed:": "Not affected", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; Retpolines, IBPB conditional, IBRS_FW, STIBP always-on, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "Not affected", + "Vulnerability Mmio stale data:": "Not affected", + "Vulnerability Tsx async abort:": "Not affected", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [ + { + "id": 0, + "name": "NVIDIA RTX A6000", + "uuid": "GPU-bfa26f0f-c563-4d7b-2157-ca283ea42f01", + "driver": "525.125.06", + "serial": "1325121022674", + "memory_total_MiB": 49140 + } + ], + "num_gpus": 1 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null + }, + { + "proof_id": "3648dc8e-815c-4afa-9a55-d8ef94c94720", + "circuit_name": "circom-multiplier2", + "circuit_id": "dc8d2ea3-558f-464b-88ef-4bfa06fa618e", + "circuit_type": "circom", + "date_created": "2024-01-15T12:58:03.819Z", + "perform_verify": false, + "status": "Ready", + "compute_time": "P0DT00H00M05.952523S", + "compute_times": { + "prove": 5.78664686344564, + "total": 6.02712868899107, + "queued": 19.881766, + "clean_up": 0.000322168692946434, + "file_setup": 0.22792908176779747, + "save_results": 0.0026133283972740173, + "generate_witness_c": 0.009340517222881317 + }, + "file_sizes": { + "proof": 705, + "total": 711, + "public": 6, + "total_gb": 7.11e-7, + "total_mb": 0.000711 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "proof_input": null, + "proof": null, + "prover_implementation": { + "name": "GPU Tachyonic", + "smbc": 6, + "smcurve": "spparkx.alt_bn128", + "smreplicate": false + }, + "public": null, + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nopl nonstop_tsc cpuid extd_apicid aperfmperf rapl pni pclmulqdq monitor ssse3 fma cx16 pcid sse4_1 sse4_2 movbe popcnt aes xsave avx f16c rdrand lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt tce topoext perfctr_core perfctr_nb bpext perfctr_llc mwaitx cpb cat_l3 cdp_l3 invpcid_single hw_pstate ssbd mba ibrs ibpb stibp vmmcall fsgsbase bmi1 avx2 smep bmi2 invpcid cqm rdt_a rdseed adx smap clflushopt clwb sha_ni xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local clzero irperf xsaveerptr rdpru wbnoinvd amd_ppin brs arat npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold v_vmsave_vmload vgif v_spec_ctrl umip pku ospke vaes vpclmulqdq rdpid overflow_recov succor smca", + "Model:": "1", + "CPU(s):": "128", + "BogoMIPS:": "5200.22", + "L2 cache:": "32 MiB (64 instances)", + "L3 cache:": "256 MiB (8 instances)", + "Stepping:": "1", + "L1d cache:": "2 MiB (64 instances)", + "L1i cache:": "2 MiB (64 instances)", + "Socket(s):": "2", + "Vendor ID:": "AuthenticAMD", + "Byte Order:": "Little Endian", + "CPU family:": "25", + "Model name:": "AMD EPYC 7513 32-Core Processor", + "CPU max MHz:": "3681.6399", + "CPU min MHz:": "1500.0000", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "48 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "AMD-V", + "Frequency boost:": "enabled", + "NUMA node0 CPU(s):": "0-31,64-95", + "NUMA node1 CPU(s):": "32-63,96-127", + "Vulnerability Mds:": "Not affected", + "Core(s) per socket:": "32", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Not affected", + "On-line CPU(s) list:": "0,7-31,34-64,71-95,98-127", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "1-6,32,33,65-70,96,97", + "Vulnerability Meltdown:": "Not affected", + "Vulnerability Retbleed:": "Not affected", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; Retpolines, IBPB conditional, IBRS_FW, STIBP always-on, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "Not affected", + "Vulnerability Mmio stale data:": "Not affected", + "Vulnerability Tsx async abort:": "Not affected", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [ + { + "id": 0, + "name": "NVIDIA RTX A5000", + "uuid": "GPU-8123ac87-4c84-a9e9-8b99-054309b65f6c", + "driver": "525.125.06", + "serial": "1323821036088", + "memory_total_MiB": 24564 + } + ], + "num_gpus": 1 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null + }, + { + "proof_id": "0593535e-0857-4dfc-8f4d-2b151e5f7bad", + "circuit_name": "circom-multiplier2", + "circuit_id": "b0811776-3cbb-4f04-91fa-77ff7816010c", + "circuit_type": "circom", + "date_created": "2024-01-15T12:58:00.883Z", + "perform_verify": false, + "status": "Ready", + "compute_time": "P0DT00H00M06.075331S", + "compute_times": { + "prove": 5.884085742756724, + "total": 6.148683849722147, + "queued": 15.626844, + "clean_up": 0.0003361683338880539, + "file_setup": 0.25031704641878605, + "save_results": 0.0027868077158927917, + "generate_witness_c": 0.010888265445828438 + }, + "file_sizes": { + "proof": 709, + "total": 715, + "public": 6, + "total_gb": 7.15e-7, + "total_mb": 0.000715 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "proof_input": null, + "proof": null, + "prover_implementation": { + "name": "GPU Tachyonic", + "smbc": 6, + "smcurve": "spparkx.alt_bn128", + "smreplicate": false + }, + "public": null, + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nopl nonstop_tsc cpuid extd_apicid aperfmperf rapl pni pclmulqdq monitor ssse3 fma cx16 pcid sse4_1 sse4_2 movbe popcnt aes xsave avx f16c rdrand lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt tce topoext perfctr_core perfctr_nb bpext perfctr_llc mwaitx cpb cat_l3 cdp_l3 invpcid_single hw_pstate ssbd mba ibrs ibpb stibp vmmcall fsgsbase bmi1 avx2 smep bmi2 invpcid cqm rdt_a rdseed adx smap clflushopt clwb sha_ni xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local clzero irperf xsaveerptr rdpru wbnoinvd amd_ppin brs arat npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold v_vmsave_vmload vgif v_spec_ctrl umip pku ospke vaes vpclmulqdq rdpid overflow_recov succor smca", + "Model:": "1", + "CPU(s):": "128", + "BogoMIPS:": "5200.22", + "L2 cache:": "32 MiB (64 instances)", + "L3 cache:": "256 MiB (8 instances)", + "Stepping:": "1", + "L1d cache:": "2 MiB (64 instances)", + "L1i cache:": "2 MiB (64 instances)", + "Socket(s):": "2", + "Vendor ID:": "AuthenticAMD", + "Byte Order:": "Little Endian", + "CPU family:": "25", + "Model name:": "AMD EPYC 7513 32-Core Processor", + "CPU max MHz:": "3681.6399", + "CPU min MHz:": "1500.0000", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "48 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "AMD-V", + "Frequency boost:": "enabled", + "NUMA node0 CPU(s):": "0-31,64-95", + "NUMA node1 CPU(s):": "32-63,96-127", + "Vulnerability Mds:": "Not affected", + "Core(s) per socket:": "32", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Not affected", + "On-line CPU(s) list:": "0,5-64,69-127", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "1-4,65-68", + "Vulnerability Meltdown:": "Not affected", + "Vulnerability Retbleed:": "Not affected", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; Retpolines, IBPB conditional, IBRS_FW, STIBP always-on, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "Not affected", + "Vulnerability Mmio stale data:": "Not affected", + "Vulnerability Tsx async abort:": "Not affected", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [ + { + "id": 0, + "name": "NVIDIA RTX A5000", + "uuid": "GPU-8123ac87-4c84-a9e9-8b99-054309b65f6c", + "driver": "525.125.06", + "serial": "1323821036088", + "memory_total_MiB": 24564 + } + ], + "num_gpus": 1 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null + }, + { + "proof_id": "1a60be26-4e51-4ac6-befd-db89c42c6f47", + "circuit_name": "circom-multiplier2", + "circuit_id": "f8e982ba-0f45-445f-8080-31e81ea66636", + "circuit_type": "circom", + "date_created": "2024-01-15T12:57:55.709Z", + "perform_verify": false, + "status": "Ready", + "compute_time": "P0DT00H00M06.347161S", + "compute_times": { + "prove": 6.171584198251367, + "total": 6.416391229256988, + "queued": 13.397523, + "clean_up": 0.00026652775704860687, + "file_setup": 0.23340564966201782, + "save_results": 0.0024722814559936523, + "generate_witness_c": 0.008305234834551811 + }, + "file_sizes": { + "proof": 706, + "total": 712, + "public": 6, + "total_gb": 7.12e-7, + "total_mb": 0.000712 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "proof_input": null, + "proof": null, + "prover_implementation": { + "name": "GPU Tachyonic", + "smbc": 6, + "smcurve": "spparkx.alt_bn128", + "smreplicate": false + }, + "public": null, + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nopl nonstop_tsc cpuid extd_apicid aperfmperf rapl pni pclmulqdq monitor ssse3 fma cx16 pcid sse4_1 sse4_2 movbe popcnt aes xsave avx f16c rdrand lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt tce topoext perfctr_core perfctr_nb bpext perfctr_llc mwaitx cpb cat_l3 cdp_l3 invpcid_single hw_pstate ssbd mba ibrs ibpb stibp vmmcall fsgsbase bmi1 avx2 smep bmi2 invpcid cqm rdt_a rdseed adx smap clflushopt clwb sha_ni xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local clzero irperf xsaveerptr rdpru wbnoinvd amd_ppin brs arat npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold v_vmsave_vmload vgif v_spec_ctrl umip pku ospke vaes vpclmulqdq rdpid overflow_recov succor smca", + "Model:": "1", + "CPU(s):": "128", + "BogoMIPS:": "5200.22", + "L2 cache:": "32 MiB (64 instances)", + "L3 cache:": "256 MiB (8 instances)", + "Stepping:": "1", + "L1d cache:": "2 MiB (64 instances)", + "L1i cache:": "2 MiB (64 instances)", + "Socket(s):": "2", + "Vendor ID:": "AuthenticAMD", + "Byte Order:": "Little Endian", + "CPU family:": "25", + "Model name:": "AMD EPYC 7513 32-Core Processor", + "CPU max MHz:": "3681.6399", + "CPU min MHz:": "1500.0000", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "48 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "AMD-V", + "Frequency boost:": "enabled", + "NUMA node0 CPU(s):": "0-31,64-95", + "NUMA node1 CPU(s):": "32-63,96-127", + "Vulnerability Mds:": "Not affected", + "Core(s) per socket:": "32", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Not affected", + "On-line CPU(s) list:": "0,5-64,69-127", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "1-4,65-68", + "Vulnerability Meltdown:": "Not affected", + "Vulnerability Retbleed:": "Not affected", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; Retpolines, IBPB conditional, IBRS_FW, STIBP always-on, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "Not affected", + "Vulnerability Mmio stale data:": "Not affected", + "Vulnerability Tsx async abort:": "Not affected", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [ + { + "id": 0, + "name": "NVIDIA RTX A5000", + "uuid": "GPU-8123ac87-4c84-a9e9-8b99-054309b65f6c", + "driver": "525.125.06", + "serial": "1323821036088", + "memory_total_MiB": 24564 + } + ], + "num_gpus": 1 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null + }, + { + "proof_id": "e06d8295-f579-452d-aff6-58b1733c3b00", + "circuit_name": "circom-multiplier2", + "circuit_id": "39a7d49d-2aa4-42f5-bad7-41fa853c5400", + "circuit_type": "circom", + "date_created": "2024-01-15T12:57:48.596Z", + "perform_verify": false, + "status": "Ready", + "compute_time": "P0DT00H00M06.389301S", + "compute_times": { + "prove": 6.184801682829857, + "total": 6.4623388685286045, + "queued": 13.056683, + "clean_up": 0.00022029876708984375, + "file_setup": 0.2468203753232956, + "save_results": 0.002211831510066986, + "generate_witness_c": 0.027915021404623985 + }, + "file_sizes": { + "proof": 708, + "total": 714, + "public": 6, + "total_gb": 7.14e-7, + "total_mb": 0.000714 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "proof_input": null, + "proof": null, + "prover_implementation": { + "name": "GPU Tachyonic", + "smbc": 6, + "smcurve": "spparkx.alt_bn128", + "smreplicate": false + }, + "public": null, + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nopl nonstop_tsc cpuid extd_apicid aperfmperf rapl pni pclmulqdq monitor ssse3 fma cx16 pcid sse4_1 sse4_2 movbe popcnt aes xsave avx f16c rdrand lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt tce topoext perfctr_core perfctr_nb bpext perfctr_llc mwaitx cpb cat_l3 cdp_l3 invpcid_single hw_pstate ssbd mba ibrs ibpb stibp vmmcall fsgsbase bmi1 avx2 smep bmi2 invpcid cqm rdt_a rdseed adx smap clflushopt clwb sha_ni xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local clzero irperf xsaveerptr rdpru wbnoinvd amd_ppin brs arat npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold v_vmsave_vmload vgif v_spec_ctrl umip pku ospke vaes vpclmulqdq rdpid overflow_recov succor smca", + "Model:": "1", + "CPU(s):": "128", + "BogoMIPS:": "5200.22", + "L2 cache:": "32 MiB (64 instances)", + "L3 cache:": "256 MiB (8 instances)", + "Stepping:": "1", + "L1d cache:": "2 MiB (64 instances)", + "L1i cache:": "2 MiB (64 instances)", + "Socket(s):": "2", + "Vendor ID:": "AuthenticAMD", + "Byte Order:": "Little Endian", + "CPU family:": "25", + "Model name:": "AMD EPYC 7513 32-Core Processor", + "CPU max MHz:": "3681.6399", + "CPU min MHz:": "1500.0000", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "48 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "AMD-V", + "Frequency boost:": "enabled", + "NUMA node0 CPU(s):": "0-31,64-95", + "NUMA node1 CPU(s):": "32-63,96-127", + "Vulnerability Mds:": "Not affected", + "Core(s) per socket:": "32", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Not affected", + "On-line CPU(s) list:": "0,5-64,69-127", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "1-4,65-68", + "Vulnerability Meltdown:": "Not affected", + "Vulnerability Retbleed:": "Not affected", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; Retpolines, IBPB conditional, IBRS_FW, STIBP always-on, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "Not affected", + "Vulnerability Mmio stale data:": "Not affected", + "Vulnerability Tsx async abort:": "Not affected", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [ + { + "id": 0, + "name": "NVIDIA RTX A5000", + "uuid": "GPU-8123ac87-4c84-a9e9-8b99-054309b65f6c", + "driver": "525.125.06", + "serial": "1323821036088", + "memory_total_MiB": 24564 + } + ], + "num_gpus": 1 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null + }, + { + "proof_id": "2e4edf7e-5109-43cf-a48d-4b4fdfcd2e19", + "circuit_name": "circom-multiplier2", + "circuit_id": "4803fbe7-94df-4450-862e-222f380aa951", + "circuit_type": "circom", + "date_created": "2024-01-15T02:08:34.540Z", + "perform_verify": false, + "status": "Ready", + "compute_time": "P0DT00H00M03.935803S", + "compute_times": { + "prove": 3.0700035598129034, + "total": 4.0028952937573195, + "queued": 0.33355, + "clean_up": 0.0002639107406139374, + "file_setup": 0.27034700475633144, + "save_results": 0.06622319296002388, + "generate_witness_c": 0.5958553366363049 + }, + "file_sizes": { + "proof": 707, + "total": 713, + "public": 6, + "total_gb": 7.13e-7, + "total_mb": 0.000713 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "proof_input": null, + "proof": null, + "prover_implementation": { + "name": "GPU Tachyonic", + "smbc": 6, + "smcurve": "spparkx.alt_bn128", + "smreplicate": false + }, + "public": null, + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nopl nonstop_tsc cpuid extd_apicid aperfmperf rapl pni pclmulqdq monitor ssse3 fma cx16 pcid sse4_1 sse4_2 movbe popcnt aes xsave avx f16c rdrand lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt tce topoext perfctr_core perfctr_nb bpext perfctr_llc mwaitx cpb cat_l3 cdp_l3 invpcid_single hw_pstate ssbd mba ibrs ibpb stibp vmmcall fsgsbase bmi1 avx2 smep bmi2 invpcid cqm rdt_a rdseed adx smap clflushopt clwb sha_ni xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local clzero irperf xsaveerptr rdpru wbnoinvd amd_ppin brs arat npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold v_vmsave_vmload vgif v_spec_ctrl umip pku ospke vaes vpclmulqdq rdpid overflow_recov succor smca", + "Model:": "1", + "CPU(s):": "128", + "BogoMIPS:": "5200.47", + "L2 cache:": "32 MiB (64 instances)", + "L3 cache:": "256 MiB (8 instances)", + "Stepping:": "1", + "L1d cache:": "2 MiB (64 instances)", + "L1i cache:": "2 MiB (64 instances)", + "Socket(s):": "2", + "Vendor ID:": "AuthenticAMD", + "Byte Order:": "Little Endian", + "CPU family:": "25", + "Model name:": "AMD EPYC 7513 32-Core Processor", + "CPU max MHz:": "3681.6399", + "CPU min MHz:": "1500.0000", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "48 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "AMD-V", + "Frequency boost:": "enabled", + "NUMA node0 CPU(s):": "0-31,64-95", + "NUMA node1 CPU(s):": "32-63,96-127", + "Vulnerability Mds:": "Not affected", + "Core(s) per socket:": "32", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Not affected", + "On-line CPU(s) list:": "0,6,8,10-31,35-63,69,70,72,74-95,99-127", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "1-5,7,9,32-34,64-68,71,73,96-98", + "Vulnerability Meltdown:": "Not affected", + "Vulnerability Retbleed:": "Not affected", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; Retpolines, IBPB conditional, IBRS_FW, STIBP always-on, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "Not affected", + "Vulnerability Mmio stale data:": "Not affected", + "Vulnerability Tsx async abort:": "Not affected", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [ + { + "id": 0, + "name": "NVIDIA RTX A5000", + "uuid": "GPU-d8160060-7665-694b-2fae-0222ae6d41b2", + "driver": "525.125.06", + "serial": "1322721018312", + "memory_total_MiB": 24564 + } + ], + "num_gpus": 1 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null + }, + { + "proof_id": "e119fb54-5449-4a01-ab87-b45ef71643db", + "circuit_name": "circom-multiplier2", + "circuit_id": "384650aa-8967-4250-af2a-7314d45d6a9e", + "circuit_type": "circom", + "date_created": "2024-01-15T02:08:29.773Z", + "perform_verify": false, + "status": "Ready", + "compute_time": "P0DT00H00M05.856164S", + "compute_times": { + "prove": 5.639464415609837, + "total": 5.929233264178038, + "queued": 0.650797, + "clean_up": 0.00027068890631198883, + "file_setup": 0.25932174175977707, + "save_results": 0.0027653388679027557, + "generate_witness_c": 0.02706645056605339 + }, + "file_sizes": { + "proof": 707, + "total": 713, + "public": 6, + "total_gb": 7.13e-7, + "total_mb": 0.000713 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "proof_input": null, + "proof": null, + "prover_implementation": { + "name": "GPU Tachyonic", + "smbc": 6, + "smcurve": "spparkx.alt_bn128", + "smreplicate": false + }, + "public": null, + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nopl nonstop_tsc cpuid extd_apicid aperfmperf rapl pni pclmulqdq monitor ssse3 fma cx16 pcid sse4_1 sse4_2 movbe popcnt aes xsave avx f16c rdrand lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt tce topoext perfctr_core perfctr_nb bpext perfctr_llc mwaitx cpb cat_l3 cdp_l3 invpcid_single hw_pstate ssbd mba ibrs ibpb stibp vmmcall fsgsbase bmi1 avx2 smep bmi2 invpcid cqm rdt_a rdseed adx smap clflushopt clwb sha_ni xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local clzero irperf xsaveerptr rdpru wbnoinvd amd_ppin brs arat npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold v_vmsave_vmload vgif v_spec_ctrl umip pku ospke vaes vpclmulqdq rdpid overflow_recov succor smca", + "Model:": "1", + "CPU(s):": "128", + "BogoMIPS:": "5200.16", + "L2 cache:": "32 MiB (64 instances)", + "L3 cache:": "256 MiB (8 instances)", + "Stepping:": "1", + "L1d cache:": "2 MiB (64 instances)", + "L1i cache:": "2 MiB (64 instances)", + "Socket(s):": "2", + "Vendor ID:": "AuthenticAMD", + "Byte Order:": "Little Endian", + "CPU family:": "25", + "Model name:": "AMD EPYC 7513 32-Core Processor", + "CPU max MHz:": "3681.6399", + "CPU min MHz:": "1500.0000", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "48 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "AMD-V", + "Frequency boost:": "enabled", + "NUMA node0 CPU(s):": "0-31,64-95", + "NUMA node1 CPU(s):": "32-63,96-127", + "Vulnerability Mds:": "Not affected", + "Core(s) per socket:": "32", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Not affected", + "On-line CPU(s) list:": "0,1,7-31,34-65,67,71-95,98-127", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "2-6,32,33,66,68-70,96,97", + "Vulnerability Meltdown:": "Not affected", + "Vulnerability Retbleed:": "Not affected", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; Retpolines, IBPB conditional, IBRS_FW, STIBP always-on, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "Not affected", + "Vulnerability Mmio stale data:": "Not affected", + "Vulnerability Tsx async abort:": "Not affected", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [ + { + "id": 0, + "name": "NVIDIA RTX A5000", + "uuid": "GPU-79117d4d-91b9-eb61-753d-b86432cca7e8", + "driver": "525.125.06", + "serial": "1325121130125", + "memory_total_MiB": 24564 + } + ], + "num_gpus": 1 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null + }, + { + "proof_id": "d4611aeb-4705-4373-951c-ba4c1e0329b5", + "circuit_name": "circom-multiplier2", + "circuit_id": "fda87f7f-c3ec-4f10-948e-d033331c76c9", + "circuit_type": "circom", + "date_created": "2024-01-15T02:08:24.790Z", + "perform_verify": false, + "status": "Ready", + "compute_time": "P0DT00H00M02.340675S", + "compute_times": { + "prove": 1.4024820234626532, + "total": 2.4250366389751434, + "queued": 0.269107, + "clean_up": 0.0002933405339717865, + "file_setup": 0.3153865169733763, + "save_results": 0.06680999137461185, + "generate_witness_c": 0.6396786384284496 + }, + "file_sizes": { + "proof": 708, + "total": 714, + "public": 6, + "total_gb": 7.14e-7, + "total_mb": 0.000714 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "proof_input": null, + "proof": null, + "prover_implementation": { + "name": "GPU Tachyonic", + "smbc": 6, + "smcurve": "spparkx.alt_bn128", + "smreplicate": false + }, + "public": null, + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nopl nonstop_tsc cpuid extd_apicid aperfmperf rapl pni pclmulqdq monitor ssse3 fma cx16 pcid sse4_1 sse4_2 movbe popcnt aes xsave avx f16c rdrand lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt tce topoext perfctr_core perfctr_nb bpext perfctr_llc mwaitx cpb cat_l3 cdp_l3 invpcid_single hw_pstate ssbd mba ibrs ibpb stibp vmmcall fsgsbase bmi1 avx2 smep bmi2 invpcid cqm rdt_a rdseed adx smap clflushopt clwb sha_ni xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local clzero irperf xsaveerptr rdpru wbnoinvd amd_ppin brs arat npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold v_vmsave_vmload vgif v_spec_ctrl umip pku ospke vaes vpclmulqdq rdpid overflow_recov succor smca", + "Model:": "1", + "CPU(s):": "128", + "BogoMIPS:": "5200.47", + "L2 cache:": "32 MiB (64 instances)", + "L3 cache:": "256 MiB (8 instances)", + "Stepping:": "1", + "L1d cache:": "2 MiB (64 instances)", + "L1i cache:": "2 MiB (64 instances)", + "Socket(s):": "2", + "Vendor ID:": "AuthenticAMD", + "Byte Order:": "Little Endian", + "CPU family:": "25", + "Model name:": "AMD EPYC 7513 32-Core Processor", + "CPU max MHz:": "3681.6399", + "CPU min MHz:": "1500.0000", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "48 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "AMD-V", + "Frequency boost:": "enabled", + "NUMA node0 CPU(s):": "0-31,64-95", + "NUMA node1 CPU(s):": "32-63,96-127", + "Vulnerability Mds:": "Not affected", + "Core(s) per socket:": "32", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Not affected", + "On-line CPU(s) list:": "0,2,5,6,8,10-31,35-63,66,69,70,72,74-95,99-127", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "1,3,4,7,9,32-34,64,65,67,68,71,73,96-98", + "Vulnerability Meltdown:": "Not affected", + "Vulnerability Retbleed:": "Not affected", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; Retpolines, IBPB conditional, IBRS_FW, STIBP always-on, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "Not affected", + "Vulnerability Mmio stale data:": "Not affected", + "Vulnerability Tsx async abort:": "Not affected", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [ + { + "id": 0, + "name": "NVIDIA RTX A5000", + "uuid": "GPU-d8160060-7665-694b-2fae-0222ae6d41b2", + "driver": "525.125.06", + "serial": "1322721018312", + "memory_total_MiB": 24564 + } + ], + "num_gpus": 1 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null + }, + { + "proof_id": "4f8ff74c-1051-44a3-ab0c-f4a6284bbf64", + "circuit_name": "circom-multiplier2", + "circuit_id": "57a370e8-d904-4e45-ad58-196db3d30f4d", + "circuit_type": "circom", + "date_created": "2024-01-15T02:08:20.359Z", + "perform_verify": false, + "status": "Ready", + "compute_time": "P0DT00H00M05.889013S", + "compute_times": { + "prove": 5.641947815194726, + "total": 5.964788755401969, + "queued": 0.707221, + "clean_up": 0.00029845722019672394, + "file_setup": 0.2756399307399988, + "save_results": 0.003031056374311447, + "generate_witness_c": 0.04360153712332249 + }, + "file_sizes": { + "proof": 706, + "total": 712, + "public": 6, + "total_gb": 7.12e-7, + "total_mb": 0.000712 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "proof_input": null, + "proof": null, + "prover_implementation": { + "name": "GPU Tachyonic", + "smbc": 6, + "smcurve": "spparkx.alt_bn128", + "smreplicate": false + }, + "public": null, + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nopl nonstop_tsc cpuid extd_apicid aperfmperf rapl pni pclmulqdq monitor ssse3 fma cx16 pcid sse4_1 sse4_2 movbe popcnt aes xsave avx f16c rdrand lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt tce topoext perfctr_core perfctr_nb bpext perfctr_llc mwaitx cpb cat_l3 cdp_l3 invpcid_single hw_pstate ssbd mba ibrs ibpb stibp vmmcall fsgsbase bmi1 avx2 smep bmi2 invpcid cqm rdt_a rdseed adx smap clflushopt clwb sha_ni xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local clzero irperf xsaveerptr rdpru wbnoinvd amd_ppin brs arat npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold v_vmsave_vmload vgif v_spec_ctrl umip pku ospke vaes vpclmulqdq rdpid overflow_recov succor smca", + "Model:": "1", + "CPU(s):": "128", + "BogoMIPS:": "5200.16", + "L2 cache:": "32 MiB (64 instances)", + "L3 cache:": "256 MiB (8 instances)", + "Stepping:": "1", + "L1d cache:": "2 MiB (64 instances)", + "L1i cache:": "2 MiB (64 instances)", + "Socket(s):": "2", + "Vendor ID:": "AuthenticAMD", + "Byte Order:": "Little Endian", + "CPU family:": "25", + "Model name:": "AMD EPYC 7513 32-Core Processor", + "CPU max MHz:": "3681.6399", + "CPU min MHz:": "1500.0000", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "48 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "AMD-V", + "Frequency boost:": "enabled", + "NUMA node0 CPU(s):": "0-31,64-95", + "NUMA node1 CPU(s):": "32-63,96-127", + "Vulnerability Mds:": "Not affected", + "Core(s) per socket:": "32", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Not affected", + "On-line CPU(s) list:": "0,1,7-31,34-65,67,71-95,98-127", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "2-6,32,33,66,68-70,96,97", + "Vulnerability Meltdown:": "Not affected", + "Vulnerability Retbleed:": "Not affected", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; Retpolines, IBPB conditional, IBRS_FW, STIBP always-on, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "Not affected", + "Vulnerability Mmio stale data:": "Not affected", + "Vulnerability Tsx async abort:": "Not affected", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [ + { + "id": 0, + "name": "NVIDIA RTX A5000", + "uuid": "GPU-79117d4d-91b9-eb61-753d-b86432cca7e8", + "driver": "525.125.06", + "serial": "1325121130125", + "memory_total_MiB": 24564 + } + ], + "num_gpus": 1 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null + }, + { + "proof_id": "d4ed1066-64bb-4f8b-a04c-03e87ba067d0", + "circuit_name": "circom-multiplier2", + "circuit_id": "1ffbe8f9-87c8-4e42-baa8-7aa33c4d17ee", + "circuit_type": "circom", + "date_created": "2024-01-15T02:07:24.129Z", + "perform_verify": false, + "status": "Ready", + "compute_time": "P0DT00H00M05.822988S", + "compute_times": { + "prove": 5.622058680281043, + "total": 5.897718669846654, + "queued": 7.598676, + "clean_up": 0.00030495598912239075, + "file_setup": 0.26278817281126976, + "save_results": 0.0033362358808517456, + "generate_witness_c": 0.008939847350120544 + }, + "file_sizes": { + "proof": 705, + "total": 711, + "public": 6, + "total_gb": 7.11e-7, + "total_mb": 0.000711 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "proof_input": null, + "proof": null, + "prover_implementation": { + "name": "GPU Tachyonic", + "smbc": 6, + "smcurve": "spparkx.alt_bn128", + "smreplicate": false + }, + "public": null, + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nopl nonstop_tsc cpuid extd_apicid aperfmperf rapl pni pclmulqdq monitor ssse3 fma cx16 pcid sse4_1 sse4_2 movbe popcnt aes xsave avx f16c rdrand lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt tce topoext perfctr_core perfctr_nb bpext perfctr_llc mwaitx cpb cat_l3 cdp_l3 invpcid_single hw_pstate ssbd mba ibrs ibpb stibp vmmcall fsgsbase bmi1 avx2 smep bmi2 invpcid cqm rdt_a rdseed adx smap clflushopt clwb sha_ni xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local clzero irperf xsaveerptr rdpru wbnoinvd amd_ppin brs arat npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold v_vmsave_vmload vgif v_spec_ctrl umip pku ospke vaes vpclmulqdq rdpid overflow_recov succor smca", + "Model:": "1", + "CPU(s):": "128", + "BogoMIPS:": "5200.16", + "L2 cache:": "32 MiB (64 instances)", + "L3 cache:": "256 MiB (8 instances)", + "Stepping:": "1", + "L1d cache:": "2 MiB (64 instances)", + "L1i cache:": "2 MiB (64 instances)", + "Socket(s):": "2", + "Vendor ID:": "AuthenticAMD", + "Byte Order:": "Little Endian", + "CPU family:": "25", + "Model name:": "AMD EPYC 7513 32-Core Processor", + "CPU max MHz:": "3681.6399", + "CPU min MHz:": "1500.0000", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "48 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "AMD-V", + "Frequency boost:": "enabled", + "NUMA node0 CPU(s):": "0-31,64-95", + "NUMA node1 CPU(s):": "32-63,96-127", + "Vulnerability Mds:": "Not affected", + "Core(s) per socket:": "32", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Not affected", + "On-line CPU(s) list:": "0,1,7-31,34-65,67,71-95,98-127", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "2-6,32,33,66,68-70,96,97", + "Vulnerability Meltdown:": "Not affected", + "Vulnerability Retbleed:": "Not affected", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; Retpolines, IBPB conditional, IBRS_FW, STIBP always-on, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "Not affected", + "Vulnerability Mmio stale data:": "Not affected", + "Vulnerability Tsx async abort:": "Not affected", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [ + { + "id": 0, + "name": "NVIDIA RTX A5000", + "uuid": "GPU-79117d4d-91b9-eb61-753d-b86432cca7e8", + "driver": "525.125.06", + "serial": "1325121130125", + "memory_total_MiB": 24564 + } + ], + "num_gpus": 1 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null + }, + { + "proof_id": "62e6a199-072a-4fbb-bd75-7d5ae26c3bf0", + "circuit_name": "circom-multiplier2", + "circuit_id": "d40bcb67-e940-4fb1-b733-5382a0d24818", + "circuit_type": "circom", + "date_created": "2024-01-15T02:07:23.768Z", + "perform_verify": false, + "status": "Ready", + "compute_time": "P0DT00H00M05.857713S", + "compute_times": { + "prove": 5.647087793797255, + "total": 5.9318443313241005, + "queued": 0.709273, + "clean_up": 0.000293998047709465, + "file_setup": 0.259655237197876, + "save_results": 0.0029127690941095352, + "generate_witness_c": 0.021628186106681824 + }, + "file_sizes": { + "proof": 708, + "total": 714, + "public": 6, + "total_gb": 7.14e-7, + "total_mb": 0.000714 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "proof_input": null, + "proof": null, + "prover_implementation": { + "name": "GPU Tachyonic", + "smbc": 6, + "smcurve": "spparkx.alt_bn128", + "smreplicate": false + }, + "public": null, + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nopl nonstop_tsc cpuid extd_apicid aperfmperf rapl pni pclmulqdq monitor ssse3 fma cx16 pcid sse4_1 sse4_2 movbe popcnt aes xsave avx f16c rdrand lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt tce topoext perfctr_core perfctr_nb bpext perfctr_llc mwaitx cpb cat_l3 cdp_l3 invpcid_single hw_pstate ssbd mba ibrs ibpb stibp vmmcall fsgsbase bmi1 avx2 smep bmi2 invpcid cqm rdt_a rdseed adx smap clflushopt clwb sha_ni xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local clzero irperf xsaveerptr rdpru wbnoinvd amd_ppin brs arat npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold v_vmsave_vmload vgif v_spec_ctrl umip pku ospke vaes vpclmulqdq rdpid overflow_recov succor smca", + "Model:": "1", + "CPU(s):": "128", + "BogoMIPS:": "5200.16", + "L2 cache:": "32 MiB (64 instances)", + "L3 cache:": "256 MiB (8 instances)", + "Stepping:": "1", + "L1d cache:": "2 MiB (64 instances)", + "L1i cache:": "2 MiB (64 instances)", + "Socket(s):": "2", + "Vendor ID:": "AuthenticAMD", + "Byte Order:": "Little Endian", + "CPU family:": "25", + "Model name:": "AMD EPYC 7513 32-Core Processor", + "CPU max MHz:": "3681.6399", + "CPU min MHz:": "1500.0000", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "48 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "AMD-V", + "Frequency boost:": "enabled", + "NUMA node0 CPU(s):": "0-31,64-95", + "NUMA node1 CPU(s):": "32-63,96-127", + "Vulnerability Mds:": "Not affected", + "Core(s) per socket:": "32", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Not affected", + "On-line CPU(s) list:": "0,1,7-31,34-65,67,71-95,98-127", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "2-6,32,33,66,68-70,96,97", + "Vulnerability Meltdown:": "Not affected", + "Vulnerability Retbleed:": "Not affected", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; Retpolines, IBPB conditional, IBRS_FW, STIBP always-on, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "Not affected", + "Vulnerability Mmio stale data:": "Not affected", + "Vulnerability Tsx async abort:": "Not affected", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [ + { + "id": 0, + "name": "NVIDIA RTX A5000", + "uuid": "GPU-79117d4d-91b9-eb61-753d-b86432cca7e8", + "driver": "525.125.06", + "serial": "1325121130125", + "memory_total_MiB": 24564 + } + ], + "num_gpus": 1 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null + }, + { + "proof_id": "4a8ec462-1b17-4478-ab4d-daec1c1d19e0", + "circuit_name": "circom-multiplier2", + "circuit_id": "a5de0eca-b376-4d33-91b6-9a30d4235aa7", + "circuit_type": "circom", + "date_created": "2024-01-15T02:03:39.549Z", + "perform_verify": false, + "status": "Ready", + "compute_time": "P0DT00H00M05.830061S", + "compute_times": { + "prove": 5.631390610709786, + "total": 5.904656020924449, + "queued": 1.982144, + "clean_up": 0.00028679706156253815, + "file_setup": 0.2506247963756323, + "save_results": 0.0030198898166418076, + "generate_witness_c": 0.018950100988149643 + }, + "file_sizes": { + "proof": 708, + "total": 714, + "public": 6, + "total_gb": 7.14e-7, + "total_mb": 0.000714 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "proof_input": null, + "proof": null, + "prover_implementation": { + "name": "GPU Tachyonic", + "smbc": 6, + "smcurve": "spparkx.alt_bn128", + "smreplicate": false + }, + "public": null, + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nopl nonstop_tsc cpuid extd_apicid aperfmperf rapl pni pclmulqdq monitor ssse3 fma cx16 pcid sse4_1 sse4_2 movbe popcnt aes xsave avx f16c rdrand lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt tce topoext perfctr_core perfctr_nb bpext perfctr_llc mwaitx cpb cat_l3 cdp_l3 invpcid_single hw_pstate ssbd mba ibrs ibpb stibp vmmcall fsgsbase bmi1 avx2 smep bmi2 invpcid cqm rdt_a rdseed adx smap clflushopt clwb sha_ni xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local clzero irperf xsaveerptr rdpru wbnoinvd amd_ppin brs arat npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold v_vmsave_vmload vgif v_spec_ctrl umip pku ospke vaes vpclmulqdq rdpid overflow_recov succor smca", + "Model:": "1", + "CPU(s):": "128", + "BogoMIPS:": "5200.16", + "L2 cache:": "32 MiB (64 instances)", + "L3 cache:": "256 MiB (8 instances)", + "Stepping:": "1", + "L1d cache:": "2 MiB (64 instances)", + "L1i cache:": "2 MiB (64 instances)", + "Socket(s):": "2", + "Vendor ID:": "AuthenticAMD", + "Byte Order:": "Little Endian", + "CPU family:": "25", + "Model name:": "AMD EPYC 7513 32-Core Processor", + "CPU max MHz:": "3681.6399", + "CPU min MHz:": "1500.0000", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "48 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "AMD-V", + "Frequency boost:": "enabled", + "NUMA node0 CPU(s):": "0-31,64-95", + "NUMA node1 CPU(s):": "32-63,96-127", + "Vulnerability Mds:": "Not affected", + "Core(s) per socket:": "32", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Not affected", + "On-line CPU(s) list:": "0,1,7-31,34-65,67,71-95,98-127", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "2-6,32,33,66,68-70,96,97", + "Vulnerability Meltdown:": "Not affected", + "Vulnerability Retbleed:": "Not affected", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; Retpolines, IBPB conditional, IBRS_FW, STIBP always-on, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "Not affected", + "Vulnerability Mmio stale data:": "Not affected", + "Vulnerability Tsx async abort:": "Not affected", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [ + { + "id": 0, + "name": "NVIDIA RTX A5000", + "uuid": "GPU-79117d4d-91b9-eb61-753d-b86432cca7e8", + "driver": "525.125.06", + "serial": "1325121130125", + "memory_total_MiB": 24564 + } + ], + "num_gpus": 1 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null + }, + { + "proof_id": "55636021-bab1-4e5c-a552-271ecd3bca46", + "circuit_name": "circom-multiplier2", + "circuit_id": "3eec50d0-8bc1-4266-8506-a76961a3627d", + "circuit_type": "circom", + "date_created": "2024-01-15T02:03:30.608Z", + "perform_verify": false, + "status": "Ready", + "compute_time": "P0DT00H00M05.833596S", + "compute_times": { + "prove": 5.6385393515229225, + "total": 5.9040695410221815, + "queued": 0.701332, + "clean_up": 0.00033533573150634766, + "file_setup": 0.24379334598779678, + "save_results": 0.0030993279069662094, + "generate_witness_c": 0.017941521480679512 + }, + "file_sizes": { + "proof": 706, + "total": 712, + "public": 6, + "total_gb": 7.12e-7, + "total_mb": 0.000712 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "proof_input": null, + "proof": null, + "prover_implementation": { + "name": "GPU Tachyonic", + "smbc": 6, + "smcurve": "spparkx.alt_bn128", + "smreplicate": false + }, + "public": null, + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nopl nonstop_tsc cpuid extd_apicid aperfmperf rapl pni pclmulqdq monitor ssse3 fma cx16 pcid sse4_1 sse4_2 movbe popcnt aes xsave avx f16c rdrand lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt tce topoext perfctr_core perfctr_nb bpext perfctr_llc mwaitx cpb cat_l3 cdp_l3 invpcid_single hw_pstate ssbd mba ibrs ibpb stibp vmmcall fsgsbase bmi1 avx2 smep bmi2 invpcid cqm rdt_a rdseed adx smap clflushopt clwb sha_ni xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local clzero irperf xsaveerptr rdpru wbnoinvd amd_ppin brs arat npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold v_vmsave_vmload vgif v_spec_ctrl umip pku ospke vaes vpclmulqdq rdpid overflow_recov succor smca", + "Model:": "1", + "CPU(s):": "128", + "BogoMIPS:": "5200.16", + "L2 cache:": "32 MiB (64 instances)", + "L3 cache:": "256 MiB (8 instances)", + "Stepping:": "1", + "L1d cache:": "2 MiB (64 instances)", + "L1i cache:": "2 MiB (64 instances)", + "Socket(s):": "2", + "Vendor ID:": "AuthenticAMD", + "Byte Order:": "Little Endian", + "CPU family:": "25", + "Model name:": "AMD EPYC 7513 32-Core Processor", + "CPU max MHz:": "3681.6399", + "CPU min MHz:": "1500.0000", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "48 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "AMD-V", + "Frequency boost:": "enabled", + "NUMA node0 CPU(s):": "0-31,64-95", + "NUMA node1 CPU(s):": "32-63,96-127", + "Vulnerability Mds:": "Not affected", + "Core(s) per socket:": "32", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Not affected", + "On-line CPU(s) list:": "0,1,7-31,34-65,67,71-95,98-127", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "2-6,32,33,66,68-70,96,97", + "Vulnerability Meltdown:": "Not affected", + "Vulnerability Retbleed:": "Not affected", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; Retpolines, IBPB conditional, IBRS_FW, STIBP always-on, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "Not affected", + "Vulnerability Mmio stale data:": "Not affected", + "Vulnerability Tsx async abort:": "Not affected", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [ + { + "id": 0, + "name": "NVIDIA RTX A5000", + "uuid": "GPU-79117d4d-91b9-eb61-753d-b86432cca7e8", + "driver": "525.125.06", + "serial": "1325121130125", + "memory_total_MiB": 24564 + } + ], + "num_gpus": 1 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null + }, + { + "proof_id": "6cdf4182-8844-4c68-b6cd-332129204371", + "circuit_name": "circom-multiplier2", + "circuit_id": "596a0973-b6a7-4e8f-b6d6-9f2ddb483f02", + "circuit_type": "circom", + "date_created": "2024-01-15T02:01:17.976Z", + "perform_verify": false, + "status": "Ready", + "compute_time": "P0DT00H00M05.847273S", + "compute_times": { + "prove": 5.660725159570575, + "total": 5.9144034665077925, + "queued": 0.696042, + "clean_up": 0.000287666916847229, + "file_setup": 0.2316605094820261, + "save_results": 0.0032375045120716095, + "generate_witness_c": 0.018273497000336647 + }, + "file_sizes": { + "proof": 707, + "total": 713, + "public": 6, + "total_gb": 7.13e-7, + "total_mb": 0.000713 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "proof_input": null, + "proof": null, + "prover_implementation": { + "name": "GPU Tachyonic", + "smbc": 6, + "smcurve": "spparkx.alt_bn128", + "smreplicate": false + }, + "public": null, + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nopl nonstop_tsc cpuid extd_apicid aperfmperf rapl pni pclmulqdq monitor ssse3 fma cx16 pcid sse4_1 sse4_2 movbe popcnt aes xsave avx f16c rdrand lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt tce topoext perfctr_core perfctr_nb bpext perfctr_llc mwaitx cpb cat_l3 cdp_l3 invpcid_single hw_pstate ssbd mba ibrs ibpb stibp vmmcall fsgsbase bmi1 avx2 smep bmi2 invpcid cqm rdt_a rdseed adx smap clflushopt clwb sha_ni xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local clzero irperf xsaveerptr rdpru wbnoinvd amd_ppin brs arat npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold v_vmsave_vmload vgif v_spec_ctrl umip pku ospke vaes vpclmulqdq rdpid overflow_recov succor smca", + "Model:": "1", + "CPU(s):": "128", + "BogoMIPS:": "5200.16", + "L2 cache:": "32 MiB (64 instances)", + "L3 cache:": "256 MiB (8 instances)", + "Stepping:": "1", + "L1d cache:": "2 MiB (64 instances)", + "L1i cache:": "2 MiB (64 instances)", + "Socket(s):": "2", + "Vendor ID:": "AuthenticAMD", + "Byte Order:": "Little Endian", + "CPU family:": "25", + "Model name:": "AMD EPYC 7513 32-Core Processor", + "CPU max MHz:": "3681.6399", + "CPU min MHz:": "1500.0000", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "48 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "AMD-V", + "Frequency boost:": "enabled", + "NUMA node0 CPU(s):": "0-31,64-95", + "NUMA node1 CPU(s):": "32-63,96-127", + "Vulnerability Mds:": "Not affected", + "Core(s) per socket:": "32", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Not affected", + "On-line CPU(s) list:": "0,1,7-31,34-65,67,71-95,98-127", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "2-6,32,33,66,68-70,96,97", + "Vulnerability Meltdown:": "Not affected", + "Vulnerability Retbleed:": "Not affected", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; Retpolines, IBPB conditional, IBRS_FW, STIBP always-on, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "Not affected", + "Vulnerability Mmio stale data:": "Not affected", + "Vulnerability Tsx async abort:": "Not affected", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [ + { + "id": 0, + "name": "NVIDIA RTX A5000", + "uuid": "GPU-79117d4d-91b9-eb61-753d-b86432cca7e8", + "driver": "525.125.06", + "serial": "1325121130125", + "memory_total_MiB": 24564 + } + ], + "num_gpus": 1 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null + }, + { + "proof_id": "fc45e68e-ccfe-43ab-87c1-f3114dada607", + "circuit_name": "circom-multiplier2", + "circuit_id": "4f5b0304-a53e-45e9-b83f-8e06611dc640", + "circuit_type": "circom", + "date_created": "2024-01-15T01:53:10.576Z", + "perform_verify": false, + "status": "Ready", + "compute_time": "P0DT00H00M05.825130S", + "compute_times": { + "prove": 5.63365101441741, + "total": 5.900212554261088, + "queued": 8.137106, + "clean_up": 0.00022866018116474152, + "file_setup": 0.25481966882944107, + "save_results": 0.0027084313333034515, + "generate_witness_c": 0.008522702381014824 + }, + "file_sizes": { + "proof": 708, + "total": 714, + "public": 6, + "total_gb": 7.14e-7, + "total_mb": 0.000714 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "proof_input": null, + "proof": null, + "prover_implementation": { + "name": "GPU Tachyonic", + "smbc": 6, + "smcurve": "spparkx.alt_bn128", + "smreplicate": false + }, + "public": null, + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nopl nonstop_tsc cpuid extd_apicid aperfmperf rapl pni pclmulqdq monitor ssse3 fma cx16 pcid sse4_1 sse4_2 movbe popcnt aes xsave avx f16c rdrand lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt tce topoext perfctr_core perfctr_nb bpext perfctr_llc mwaitx cpb cat_l3 cdp_l3 invpcid_single hw_pstate ssbd mba ibrs ibpb stibp vmmcall fsgsbase bmi1 avx2 smep bmi2 invpcid cqm rdt_a rdseed adx smap clflushopt clwb sha_ni xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local clzero irperf xsaveerptr rdpru wbnoinvd amd_ppin brs arat npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold v_vmsave_vmload vgif v_spec_ctrl umip pku ospke vaes vpclmulqdq rdpid overflow_recov succor smca", + "Model:": "1", + "CPU(s):": "128", + "BogoMIPS:": "5200.16", + "L2 cache:": "32 MiB (64 instances)", + "L3 cache:": "256 MiB (8 instances)", + "Stepping:": "1", + "L1d cache:": "2 MiB (64 instances)", + "L1i cache:": "2 MiB (64 instances)", + "Socket(s):": "2", + "Vendor ID:": "AuthenticAMD", + "Byte Order:": "Little Endian", + "CPU family:": "25", + "Model name:": "AMD EPYC 7513 32-Core Processor", + "CPU max MHz:": "3681.6399", + "CPU min MHz:": "1500.0000", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "48 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "AMD-V", + "Frequency boost:": "enabled", + "NUMA node0 CPU(s):": "0-31,64-95", + "NUMA node1 CPU(s):": "32-63,96-127", + "Vulnerability Mds:": "Not affected", + "Core(s) per socket:": "32", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Not affected", + "On-line CPU(s) list:": "0,1,7-31,34-65,67,71-95,98-127", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "2-6,32,33,66,68-70,96,97", + "Vulnerability Meltdown:": "Not affected", + "Vulnerability Retbleed:": "Not affected", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; Retpolines, IBPB conditional, IBRS_FW, STIBP always-on, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "Not affected", + "Vulnerability Mmio stale data:": "Not affected", + "Vulnerability Tsx async abort:": "Not affected", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [ + { + "id": 0, + "name": "NVIDIA RTX A5000", + "uuid": "GPU-79117d4d-91b9-eb61-753d-b86432cca7e8", + "driver": "525.125.06", + "serial": "1325121130125", + "memory_total_MiB": 24564 + } + ], + "num_gpus": 1 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null + }, + { + "proof_id": "93f27b36-de2d-4251-b7d6-1c9fccca2f06", + "circuit_name": "circom-multiplier2", + "circuit_id": "696b5f3c-ac4c-4c88-a40a-7b8d5239cb47", + "circuit_type": "circom", + "date_created": "2024-01-15T01:53:04.491Z", + "perform_verify": false, + "status": "Ready", + "compute_time": "P0DT00H00M06.143579S", + "compute_times": { + "prove": 5.624820232391357, + "total": 6.217369062826037, + "queued": 6.939374, + "clean_up": 0.0002844296395778656, + "file_setup": 0.577876154333353, + "save_results": 0.002981366589665413, + "generate_witness_c": 0.011145314201712608 + }, + "file_sizes": { + "proof": 707, + "total": 713, + "public": 6, + "total_gb": 7.13e-7, + "total_mb": 0.000713 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "proof_input": null, + "proof": null, + "prover_implementation": { + "name": "GPU Tachyonic", + "smbc": 6, + "smcurve": "spparkx.alt_bn128", + "smreplicate": false + }, + "public": null, + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nopl nonstop_tsc cpuid extd_apicid aperfmperf rapl pni pclmulqdq monitor ssse3 fma cx16 pcid sse4_1 sse4_2 movbe popcnt aes xsave avx f16c rdrand lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt tce topoext perfctr_core perfctr_nb bpext perfctr_llc mwaitx cpb cat_l3 cdp_l3 invpcid_single hw_pstate ssbd mba ibrs ibpb stibp vmmcall fsgsbase bmi1 avx2 smep bmi2 invpcid cqm rdt_a rdseed adx smap clflushopt clwb sha_ni xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local clzero irperf xsaveerptr rdpru wbnoinvd amd_ppin brs arat npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold v_vmsave_vmload vgif v_spec_ctrl umip pku ospke vaes vpclmulqdq rdpid overflow_recov succor smca", + "Model:": "1", + "CPU(s):": "128", + "BogoMIPS:": "5200.16", + "L2 cache:": "32 MiB (64 instances)", + "L3 cache:": "256 MiB (8 instances)", + "Stepping:": "1", + "L1d cache:": "2 MiB (64 instances)", + "L1i cache:": "2 MiB (64 instances)", + "Socket(s):": "2", + "Vendor ID:": "AuthenticAMD", + "Byte Order:": "Little Endian", + "CPU family:": "25", + "Model name:": "AMD EPYC 7513 32-Core Processor", + "CPU max MHz:": "3681.6399", + "CPU min MHz:": "1500.0000", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "48 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "AMD-V", + "Frequency boost:": "enabled", + "NUMA node0 CPU(s):": "0-31,64-95", + "NUMA node1 CPU(s):": "32-63,96-127", + "Vulnerability Mds:": "Not affected", + "Core(s) per socket:": "32", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Not affected", + "On-line CPU(s) list:": "0,1,7-31,34-65,67,71-95,98-127", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "2-6,32,33,66,68-70,96,97", + "Vulnerability Meltdown:": "Not affected", + "Vulnerability Retbleed:": "Not affected", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; Retpolines, IBPB conditional, IBRS_FW, STIBP always-on, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "Not affected", + "Vulnerability Mmio stale data:": "Not affected", + "Vulnerability Tsx async abort:": "Not affected", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [ + { + "id": 0, + "name": "NVIDIA RTX A5000", + "uuid": "GPU-79117d4d-91b9-eb61-753d-b86432cca7e8", + "driver": "525.125.06", + "serial": "1325121130125", + "memory_total_MiB": 24564 + } + ], + "num_gpus": 1 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null + }, + { + "proof_id": "6c5ed6a4-de8d-4cde-9d04-844c0fae1903", + "circuit_name": "circom-multiplier2", + "circuit_id": "b4a23df2-a7e7-4eb8-9ce1-f9d52a7b5efd", + "circuit_type": "circom", + "date_created": "2024-01-15T01:53:00.837Z", + "perform_verify": false, + "status": "Ready", + "compute_time": "P0DT00H00M05.826862S", + "compute_times": { + "prove": 5.6370560657233, + "total": 5.890984209254384, + "queued": 0.694293, + "clean_up": 0.00031204894185066223, + "file_setup": 0.23010724037885666, + "save_results": 0.0025510434061288834, + "generate_witness_c": 0.02062433399260044 + }, + "file_sizes": { + "proof": 708, + "total": 714, + "public": 6, + "total_gb": 7.14e-7, + "total_mb": 0.000714 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "proof_input": null, + "proof": null, + "prover_implementation": { + "name": "GPU Tachyonic", + "smbc": 6, + "smcurve": "spparkx.alt_bn128", + "smreplicate": false + }, + "public": null, + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nopl nonstop_tsc cpuid extd_apicid aperfmperf rapl pni pclmulqdq monitor ssse3 fma cx16 pcid sse4_1 sse4_2 movbe popcnt aes xsave avx f16c rdrand lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt tce topoext perfctr_core perfctr_nb bpext perfctr_llc mwaitx cpb cat_l3 cdp_l3 invpcid_single hw_pstate ssbd mba ibrs ibpb stibp vmmcall fsgsbase bmi1 avx2 smep bmi2 invpcid cqm rdt_a rdseed adx smap clflushopt clwb sha_ni xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local clzero irperf xsaveerptr rdpru wbnoinvd amd_ppin brs arat npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold v_vmsave_vmload vgif v_spec_ctrl umip pku ospke vaes vpclmulqdq rdpid overflow_recov succor smca", + "Model:": "1", + "CPU(s):": "128", + "BogoMIPS:": "5200.16", + "L2 cache:": "32 MiB (64 instances)", + "L3 cache:": "256 MiB (8 instances)", + "Stepping:": "1", + "L1d cache:": "2 MiB (64 instances)", + "L1i cache:": "2 MiB (64 instances)", + "Socket(s):": "2", + "Vendor ID:": "AuthenticAMD", + "Byte Order:": "Little Endian", + "CPU family:": "25", + "Model name:": "AMD EPYC 7513 32-Core Processor", + "CPU max MHz:": "3681.6399", + "CPU min MHz:": "1500.0000", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "48 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "AMD-V", + "Frequency boost:": "enabled", + "NUMA node0 CPU(s):": "0-31,64-95", + "NUMA node1 CPU(s):": "32-63,96-127", + "Vulnerability Mds:": "Not affected", + "Core(s) per socket:": "32", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Not affected", + "On-line CPU(s) list:": "0,1,7-31,34-65,67,71-95,98-127", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "2-6,32,33,66,68-70,96,97", + "Vulnerability Meltdown:": "Not affected", + "Vulnerability Retbleed:": "Not affected", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; Retpolines, IBPB conditional, IBRS_FW, STIBP always-on, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "Not affected", + "Vulnerability Mmio stale data:": "Not affected", + "Vulnerability Tsx async abort:": "Not affected", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [ + { + "id": 0, + "name": "NVIDIA RTX A5000", + "uuid": "GPU-79117d4d-91b9-eb61-753d-b86432cca7e8", + "driver": "525.125.06", + "serial": "1325121130125", + "memory_total_MiB": 24564 + } + ], + "num_gpus": 1 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null + }, + { + "proof_id": "46048553-2c00-40bc-ae69-76f68d26286e", + "circuit_name": "circom-multiplier2", + "circuit_id": "d492fd4d-7509-45fb-87b3-adef4fd745df", + "circuit_type": "circom", + "date_created": "2024-01-15T01:52:49.479Z", + "perform_verify": false, + "status": "Ready", + "compute_time": "P0DT00H00M05.859514S", + "compute_times": { + "prove": 5.655713541433215, + "total": 5.953595075756311, + "queued": 0.693846, + "clean_up": 0.0002659261226654053, + "file_setup": 0.2661227900534868, + "save_results": 0.002224266529083252, + "generate_witness_c": 0.028907276690006256 + }, + "file_sizes": { + "proof": 707, + "total": 713, + "public": 6, + "total_gb": 7.13e-7, + "total_mb": 0.000713 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "proof_input": null, + "proof": null, + "prover_implementation": { + "name": "GPU Tachyonic", + "smbc": 6, + "smcurve": "spparkx.alt_bn128", + "smreplicate": false + }, + "public": null, + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nopl nonstop_tsc cpuid extd_apicid aperfmperf rapl pni pclmulqdq monitor ssse3 fma cx16 pcid sse4_1 sse4_2 movbe popcnt aes xsave avx f16c rdrand lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt tce topoext perfctr_core perfctr_nb bpext perfctr_llc mwaitx cpb cat_l3 cdp_l3 invpcid_single hw_pstate ssbd mba ibrs ibpb stibp vmmcall fsgsbase bmi1 avx2 smep bmi2 invpcid cqm rdt_a rdseed adx smap clflushopt clwb sha_ni xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local clzero irperf xsaveerptr rdpru wbnoinvd amd_ppin brs arat npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold v_vmsave_vmload vgif v_spec_ctrl umip pku ospke vaes vpclmulqdq rdpid overflow_recov succor smca", + "Model:": "1", + "CPU(s):": "128", + "BogoMIPS:": "5200.16", + "L2 cache:": "32 MiB (64 instances)", + "L3 cache:": "256 MiB (8 instances)", + "Stepping:": "1", + "L1d cache:": "2 MiB (64 instances)", + "L1i cache:": "2 MiB (64 instances)", + "Socket(s):": "2", + "Vendor ID:": "AuthenticAMD", + "Byte Order:": "Little Endian", + "CPU family:": "25", + "Model name:": "AMD EPYC 7513 32-Core Processor", + "CPU max MHz:": "3681.6399", + "CPU min MHz:": "1500.0000", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "48 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "AMD-V", + "Frequency boost:": "enabled", + "NUMA node0 CPU(s):": "0-31,64-95", + "NUMA node1 CPU(s):": "32-63,96-127", + "Vulnerability Mds:": "Not affected", + "Core(s) per socket:": "32", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Not affected", + "On-line CPU(s) list:": "0,1,7-31,34-65,67,71-95,98-127", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "2-6,32,33,66,68-70,96,97", + "Vulnerability Meltdown:": "Not affected", + "Vulnerability Retbleed:": "Not affected", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; Retpolines, IBPB conditional, IBRS_FW, STIBP always-on, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "Not affected", + "Vulnerability Mmio stale data:": "Not affected", + "Vulnerability Tsx async abort:": "Not affected", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [ + { + "id": 0, + "name": "NVIDIA RTX A5000", + "uuid": "GPU-79117d4d-91b9-eb61-753d-b86432cca7e8", + "driver": "525.125.06", + "serial": "1325121130125", + "memory_total_MiB": 24564 + } + ], + "num_gpus": 1 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null + }, + { + "proof_id": "73c4b7e5-e5e8-42de-b0ee-ca5b596c012d", + "circuit_name": "circom-multiplier2", + "circuit_id": "16c96d49-925a-4232-8da4-c43026de854e", + "circuit_type": "circom", + "date_created": "2024-01-15T01:44:52.289Z", + "perform_verify": false, + "status": "Ready", + "compute_time": "P0DT00H00M06.397579S", + "compute_times": { + "prove": 6.192587662488222, + "total": 6.465461192652583, + "queued": 9.005381, + "clean_up": 0.0004098862409591675, + "file_setup": 0.25517357513308525, + "save_results": 0.00757579505443573, + "generate_witness_c": 0.009418565779924393 + }, + "file_sizes": { + "proof": 708, + "total": 714, + "public": 6, + "total_gb": 7.14e-7, + "total_mb": 0.000714 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "proof_input": null, + "proof": null, + "prover_implementation": { + "name": "GPU Tachyonic", + "smbc": 6, + "smcurve": "spparkx.alt_bn128", + "smreplicate": false + }, + "public": null, + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nopl nonstop_tsc cpuid extd_apicid aperfmperf rapl pni pclmulqdq monitor ssse3 fma cx16 pcid sse4_1 sse4_2 movbe popcnt aes xsave avx f16c rdrand lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt tce topoext perfctr_core perfctr_nb bpext perfctr_llc mwaitx cpb cat_l3 cdp_l3 invpcid_single hw_pstate ssbd mba ibrs ibpb stibp vmmcall fsgsbase bmi1 avx2 smep bmi2 invpcid cqm rdt_a rdseed adx smap clflushopt clwb sha_ni xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local clzero irperf xsaveerptr rdpru wbnoinvd amd_ppin brs arat npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold v_vmsave_vmload vgif v_spec_ctrl umip pku ospke vaes vpclmulqdq rdpid overflow_recov succor smca", + "Model:": "1", + "CPU(s):": "128", + "BogoMIPS:": "5200.17", + "L2 cache:": "32 MiB (64 instances)", + "L3 cache:": "256 MiB (8 instances)", + "Stepping:": "1", + "L1d cache:": "2 MiB (64 instances)", + "L1i cache:": "2 MiB (64 instances)", + "Socket(s):": "2", + "Vendor ID:": "AuthenticAMD", + "Byte Order:": "Little Endian", + "CPU family:": "25", + "Model name:": "AMD EPYC 7513 32-Core Processor", + "CPU max MHz:": "3681.6399", + "CPU min MHz:": "1500.0000", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "48 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "AMD-V", + "Frequency boost:": "enabled", + "NUMA node0 CPU(s):": "0-31,64-95", + "NUMA node1 CPU(s):": "32-63,96-127", + "Vulnerability Mds:": "Not affected", + "Core(s) per socket:": "32", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Not affected", + "On-line CPU(s) list:": "0-2,5-32,34-63,65,66,69-96,98-127", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "3,4,33,64,67,68,97", + "Vulnerability Meltdown:": "Not affected", + "Vulnerability Retbleed:": "Not affected", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; Retpolines, IBPB conditional, IBRS_FW, STIBP always-on, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "Not affected", + "Vulnerability Mmio stale data:": "Not affected", + "Vulnerability Tsx async abort:": "Not affected", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [ + { + "id": 0, + "name": "NVIDIA RTX A5000", + "uuid": "GPU-782cd3ea-0ea7-bd75-f8f2-54d75566f9c2", + "driver": "525.125.06", + "serial": "1324921081899", + "memory_total_MiB": 24564 + } + ], + "num_gpus": 1 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null + }, + { + "proof_id": "be7990f4-a06a-4dae-873d-4c331b6c6368", + "circuit_name": "circom-multiplier2", + "circuit_id": "01d61417-f3c8-405d-8327-8676c11b920c", + "circuit_type": "circom", + "date_created": "2024-01-15T01:44:47.933Z", + "perform_verify": false, + "status": "Ready", + "compute_time": "P0DT00H00M06.415701S", + "compute_times": { + "prove": 6.212794356048107, + "total": 6.486022163182497, + "queued": 5.792826, + "clean_up": 0.0002670474350452423, + "file_setup": 0.2612623367458582, + "save_results": 0.002615245059132576, + "generate_witness_c": 0.008822411298751831 + }, + "file_sizes": { + "proof": 705, + "total": 711, + "public": 6, + "total_gb": 7.11e-7, + "total_mb": 0.000711 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "proof_input": null, + "proof": null, + "prover_implementation": { + "name": "GPU Tachyonic", + "smbc": 6, + "smcurve": "spparkx.alt_bn128", + "smreplicate": false + }, + "public": null, + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nopl nonstop_tsc cpuid extd_apicid aperfmperf rapl pni pclmulqdq monitor ssse3 fma cx16 pcid sse4_1 sse4_2 movbe popcnt aes xsave avx f16c rdrand lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt tce topoext perfctr_core perfctr_nb bpext perfctr_llc mwaitx cpb cat_l3 cdp_l3 invpcid_single hw_pstate ssbd mba ibrs ibpb stibp vmmcall fsgsbase bmi1 avx2 smep bmi2 invpcid cqm rdt_a rdseed adx smap clflushopt clwb sha_ni xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local clzero irperf xsaveerptr rdpru wbnoinvd amd_ppin brs arat npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold v_vmsave_vmload vgif v_spec_ctrl umip pku ospke vaes vpclmulqdq rdpid overflow_recov succor smca", + "Model:": "1", + "CPU(s):": "128", + "BogoMIPS:": "5200.17", + "L2 cache:": "32 MiB (64 instances)", + "L3 cache:": "256 MiB (8 instances)", + "Stepping:": "1", + "L1d cache:": "2 MiB (64 instances)", + "L1i cache:": "2 MiB (64 instances)", + "Socket(s):": "2", + "Vendor ID:": "AuthenticAMD", + "Byte Order:": "Little Endian", + "CPU family:": "25", + "Model name:": "AMD EPYC 7513 32-Core Processor", + "CPU max MHz:": "3681.6399", + "CPU min MHz:": "1500.0000", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "48 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "AMD-V", + "Frequency boost:": "enabled", + "NUMA node0 CPU(s):": "0-31,64-95", + "NUMA node1 CPU(s):": "32-63,96-127", + "Vulnerability Mds:": "Not affected", + "Core(s) per socket:": "32", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Not affected", + "On-line CPU(s) list:": "0-2,5-32,34-63,65,66,69-96,98-127", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "3,4,33,64,67,68,97", + "Vulnerability Meltdown:": "Not affected", + "Vulnerability Retbleed:": "Not affected", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; Retpolines, IBPB conditional, IBRS_FW, STIBP always-on, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "Not affected", + "Vulnerability Mmio stale data:": "Not affected", + "Vulnerability Tsx async abort:": "Not affected", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [ + { + "id": 0, + "name": "NVIDIA RTX A5000", + "uuid": "GPU-782cd3ea-0ea7-bd75-f8f2-54d75566f9c2", + "driver": "525.125.06", + "serial": "1324921081899", + "memory_total_MiB": 24564 + } + ], + "num_gpus": 1 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null + }, + { + "proof_id": "26f07d1b-4740-4410-9319-38c99c80c474", + "circuit_name": "circom-multiplier2", + "circuit_id": "03dcdd85-9300-440b-8353-91bea904d8c5", + "circuit_type": "circom", + "date_created": "2024-01-15T01:44:45.581Z", + "perform_verify": false, + "status": "Ready", + "compute_time": "P0DT00H00M06.435592S", + "compute_times": { + "prove": 6.2201853562146425, + "total": 6.502878189086914, + "queued": 0.652189, + "clean_up": 0.00024727731943130493, + "file_setup": 0.2532728649675846, + "save_results": 0.0022235289216041565, + "generate_witness_c": 0.026703273877501488 + }, + "file_sizes": { + "proof": 708, + "total": 714, + "public": 6, + "total_gb": 7.14e-7, + "total_mb": 0.000714 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "proof_input": null, + "proof": null, + "prover_implementation": { + "name": "GPU Tachyonic", + "smbc": 6, + "smcurve": "spparkx.alt_bn128", + "smreplicate": false + }, + "public": null, + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nopl nonstop_tsc cpuid extd_apicid aperfmperf rapl pni pclmulqdq monitor ssse3 fma cx16 pcid sse4_1 sse4_2 movbe popcnt aes xsave avx f16c rdrand lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt tce topoext perfctr_core perfctr_nb bpext perfctr_llc mwaitx cpb cat_l3 cdp_l3 invpcid_single hw_pstate ssbd mba ibrs ibpb stibp vmmcall fsgsbase bmi1 avx2 smep bmi2 invpcid cqm rdt_a rdseed adx smap clflushopt clwb sha_ni xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local clzero irperf xsaveerptr rdpru wbnoinvd amd_ppin brs arat npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold v_vmsave_vmload vgif v_spec_ctrl umip pku ospke vaes vpclmulqdq rdpid overflow_recov succor smca", + "Model:": "1", + "CPU(s):": "128", + "BogoMIPS:": "5200.17", + "L2 cache:": "32 MiB (64 instances)", + "L3 cache:": "256 MiB (8 instances)", + "Stepping:": "1", + "L1d cache:": "2 MiB (64 instances)", + "L1i cache:": "2 MiB (64 instances)", + "Socket(s):": "2", + "Vendor ID:": "AuthenticAMD", + "Byte Order:": "Little Endian", + "CPU family:": "25", + "Model name:": "AMD EPYC 7513 32-Core Processor", + "CPU max MHz:": "3681.6399", + "CPU min MHz:": "1500.0000", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "48 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "AMD-V", + "Frequency boost:": "enabled", + "NUMA node0 CPU(s):": "0-31,64-95", + "NUMA node1 CPU(s):": "32-63,96-127", + "Vulnerability Mds:": "Not affected", + "Core(s) per socket:": "32", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Not affected", + "On-line CPU(s) list:": "0-2,5-32,34-63,65,66,69-96,98-127", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "3,4,33,64,67,68,97", + "Vulnerability Meltdown:": "Not affected", + "Vulnerability Retbleed:": "Not affected", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; Retpolines, IBPB conditional, IBRS_FW, STIBP always-on, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "Not affected", + "Vulnerability Mmio stale data:": "Not affected", + "Vulnerability Tsx async abort:": "Not affected", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [ + { + "id": 0, + "name": "NVIDIA RTX A5000", + "uuid": "GPU-782cd3ea-0ea7-bd75-f8f2-54d75566f9c2", + "driver": "525.125.06", + "serial": "1324921081899", + "memory_total_MiB": 24564 + } + ], + "num_gpus": 1 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null + }, + { + "proof_id": "f0e9a8ef-a9f7-45a1-9d24-25822ff56d47", + "circuit_name": "circom-multiplier2", + "circuit_id": "a7c1a9a9-2df3-4f76-9be0-1bb8456c22db", + "circuit_type": "circom", + "date_created": "2024-01-15T01:44:29.960Z", + "perform_verify": false, + "status": "Ready", + "compute_time": "P0DT00H00M06.484678S", + "compute_times": { + "prove": 6.229190753772855, + "total": 6.550728781148791, + "queued": 0.657459, + "clean_up": 0.0002836957573890686, + "file_setup": 0.2656614538282156, + "save_results": 0.0025900565087795258, + "generate_witness_c": 0.052704716101288795 + }, + "file_sizes": { + "proof": 710, + "total": 716, + "public": 6, + "total_gb": 7.16e-7, + "total_mb": 0.000716 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "proof_input": null, + "proof": null, + "prover_implementation": { + "name": "GPU Tachyonic", + "smbc": 6, + "smcurve": "spparkx.alt_bn128", + "smreplicate": false + }, + "public": null, + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nopl nonstop_tsc cpuid extd_apicid aperfmperf rapl pni pclmulqdq monitor ssse3 fma cx16 pcid sse4_1 sse4_2 movbe popcnt aes xsave avx f16c rdrand lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt tce topoext perfctr_core perfctr_nb bpext perfctr_llc mwaitx cpb cat_l3 cdp_l3 invpcid_single hw_pstate ssbd mba ibrs ibpb stibp vmmcall fsgsbase bmi1 avx2 smep bmi2 invpcid cqm rdt_a rdseed adx smap clflushopt clwb sha_ni xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local clzero irperf xsaveerptr rdpru wbnoinvd amd_ppin brs arat npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold v_vmsave_vmload vgif v_spec_ctrl umip pku ospke vaes vpclmulqdq rdpid overflow_recov succor smca", + "Model:": "1", + "CPU(s):": "128", + "BogoMIPS:": "5200.17", + "L2 cache:": "32 MiB (64 instances)", + "L3 cache:": "256 MiB (8 instances)", + "Stepping:": "1", + "L1d cache:": "2 MiB (64 instances)", + "L1i cache:": "2 MiB (64 instances)", + "Socket(s):": "2", + "Vendor ID:": "AuthenticAMD", + "Byte Order:": "Little Endian", + "CPU family:": "25", + "Model name:": "AMD EPYC 7513 32-Core Processor", + "CPU max MHz:": "3681.6399", + "CPU min MHz:": "1500.0000", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "48 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "AMD-V", + "Frequency boost:": "enabled", + "NUMA node0 CPU(s):": "0-31,64-95", + "NUMA node1 CPU(s):": "32-63,96-127", + "Vulnerability Mds:": "Not affected", + "Core(s) per socket:": "32", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Not affected", + "On-line CPU(s) list:": "0-2,5-32,34-63,65,66,69-96,98-127", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "3,4,33,64,67,68,97", + "Vulnerability Meltdown:": "Not affected", + "Vulnerability Retbleed:": "Not affected", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; Retpolines, IBPB conditional, IBRS_FW, STIBP always-on, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "Not affected", + "Vulnerability Mmio stale data:": "Not affected", + "Vulnerability Tsx async abort:": "Not affected", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [ + { + "id": 0, + "name": "NVIDIA RTX A5000", + "uuid": "GPU-782cd3ea-0ea7-bd75-f8f2-54d75566f9c2", + "driver": "525.125.06", + "serial": "1324921081899", + "memory_total_MiB": 24564 + } + ], + "num_gpus": 1 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null + }, + { + "proof_id": "f8406ce7-d14a-4fa6-9677-1d57449c0e92", + "circuit_name": "circom-multiplier2", + "circuit_id": "723f695f-ceca-435e-9423-fa9623b26962", + "circuit_type": "circom", + "date_created": "2024-01-15T01:28:35.809Z", + "perform_verify": false, + "status": "Ready", + "compute_time": "P0DT00H00M06.078477S", + "compute_times": { + "prove": 5.902009887620807, + "total": 6.183570355176926, + "queued": 6.122612, + "clean_up": 0.0002631358802318573, + "file_setup": 0.26931122317910194, + "save_results": 0.0026443954557180405, + "generate_witness_c": 0.009012777358293533 + }, + "file_sizes": { + "proof": 708, + "total": 714, + "public": 6, + "total_gb": 7.14e-7, + "total_mb": 0.000714 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "proof_input": null, + "proof": null, + "prover_implementation": { + "name": "GPU Tachyonic", + "smbc": 6, + "smcurve": "spparkx.alt_bn128", + "smreplicate": false + }, + "public": null, + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nopl nonstop_tsc cpuid extd_apicid aperfmperf rapl pni pclmulqdq monitor ssse3 fma cx16 pcid sse4_1 sse4_2 movbe popcnt aes xsave avx f16c rdrand lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt tce topoext perfctr_core perfctr_nb bpext perfctr_llc mwaitx cpb cat_l3 cdp_l3 invpcid_single hw_pstate ssbd mba ibrs ibpb stibp vmmcall fsgsbase bmi1 avx2 smep bmi2 invpcid cqm rdt_a rdseed adx smap clflushopt clwb sha_ni xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local clzero irperf xsaveerptr rdpru wbnoinvd amd_ppin brs arat npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold v_vmsave_vmload vgif v_spec_ctrl umip pku ospke vaes vpclmulqdq rdpid overflow_recov succor smca", + "Model:": "1", + "CPU(s):": "128", + "BogoMIPS:": "5199.98", + "L2 cache:": "32 MiB (64 instances)", + "L3 cache:": "256 MiB (8 instances)", + "Stepping:": "1", + "L1d cache:": "2 MiB (64 instances)", + "L1i cache:": "2 MiB (64 instances)", + "Socket(s):": "2", + "Vendor ID:": "AuthenticAMD", + "Byte Order:": "Little Endian", + "CPU family:": "25", + "Model name:": "AMD EPYC 7513 32-Core Processor", + "CPU max MHz:": "3681.6399", + "CPU min MHz:": "1500.0000", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "48 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "AMD-V", + "Frequency boost:": "enabled", + "NUMA node0 CPU(s):": "0-31,64-95", + "NUMA node1 CPU(s):": "32-63,96-127", + "Vulnerability Mds:": "Not affected", + "Core(s) per socket:": "32", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Not affected", + "On-line CPU(s) list:": "0,4-32,34-63,69-96,98-127", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "1-3,33,64-68,97", + "Vulnerability Meltdown:": "Not affected", + "Vulnerability Retbleed:": "Not affected", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; Retpolines, IBPB conditional, IBRS_FW, STIBP always-on, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "Not affected", + "Vulnerability Mmio stale data:": "Not affected", + "Vulnerability Tsx async abort:": "Not affected", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [ + { + "id": 0, + "name": "NVIDIA RTX A5000", + "uuid": "GPU-3ae041c5-a9ec-129a-cbf6-33b374bc92c0", + "driver": "525.125.06", + "serial": "1325121129330", + "memory_total_MiB": 24564 + } + ], + "num_gpus": 1 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null + }, + { + "proof_id": "bc95c37e-6335-4962-a45e-ce0e92856220", + "circuit_name": "circom-multiplier2", + "circuit_id": "1f4e0b8e-d4a1-40fa-b32b-a8d263ca516f", + "circuit_type": "circom", + "date_created": "2024-01-15T01:28:33.921Z", + "perform_verify": false, + "status": "Ready", + "compute_time": "P0DT00H00M06.160198S", + "compute_times": { + "prove": 5.963096780702472, + "total": 6.232641618698835, + "queued": 0.650062, + "clean_up": 0.00031645968556404114, + "file_setup": 0.24531847052276134, + "save_results": 0.003001151606440544, + "generate_witness_c": 0.020530829206109047 + }, + "file_sizes": { + "proof": 708, + "total": 714, + "public": 6, + "total_gb": 7.14e-7, + "total_mb": 0.000714 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "proof_input": null, + "proof": null, + "prover_implementation": { + "name": "GPU Tachyonic", + "smbc": 6, + "smcurve": "spparkx.alt_bn128", + "smreplicate": false + }, + "public": null, + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nopl nonstop_tsc cpuid extd_apicid aperfmperf rapl pni pclmulqdq monitor ssse3 fma cx16 pcid sse4_1 sse4_2 movbe popcnt aes xsave avx f16c rdrand lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt tce topoext perfctr_core perfctr_nb bpext perfctr_llc mwaitx cpb cat_l3 cdp_l3 invpcid_single hw_pstate ssbd mba ibrs ibpb stibp vmmcall fsgsbase bmi1 avx2 smep bmi2 invpcid cqm rdt_a rdseed adx smap clflushopt clwb sha_ni xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local clzero irperf xsaveerptr rdpru wbnoinvd amd_ppin brs arat npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold v_vmsave_vmload vgif v_spec_ctrl umip pku ospke vaes vpclmulqdq rdpid overflow_recov succor smca", + "Model:": "1", + "CPU(s):": "128", + "BogoMIPS:": "5199.98", + "L2 cache:": "32 MiB (64 instances)", + "L3 cache:": "256 MiB (8 instances)", + "Stepping:": "1", + "L1d cache:": "2 MiB (64 instances)", + "L1i cache:": "2 MiB (64 instances)", + "Socket(s):": "2", + "Vendor ID:": "AuthenticAMD", + "Byte Order:": "Little Endian", + "CPU family:": "25", + "Model name:": "AMD EPYC 7513 32-Core Processor", + "CPU max MHz:": "3681.6399", + "CPU min MHz:": "1500.0000", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "48 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "AMD-V", + "Frequency boost:": "enabled", + "NUMA node0 CPU(s):": "0-31,64-95", + "NUMA node1 CPU(s):": "32-63,96-127", + "Vulnerability Mds:": "Not affected", + "Core(s) per socket:": "32", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Not affected", + "On-line CPU(s) list:": "0,4-32,34-63,69-96,98-127", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "1-3,33,64-68,97", + "Vulnerability Meltdown:": "Not affected", + "Vulnerability Retbleed:": "Not affected", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; Retpolines, IBPB conditional, IBRS_FW, STIBP always-on, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "Not affected", + "Vulnerability Mmio stale data:": "Not affected", + "Vulnerability Tsx async abort:": "Not affected", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [ + { + "id": 0, + "name": "NVIDIA RTX A5000", + "uuid": "GPU-3ae041c5-a9ec-129a-cbf6-33b374bc92c0", + "driver": "525.125.06", + "serial": "1325121129330", + "memory_total_MiB": 24564 + } + ], + "num_gpus": 1 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null + }, + { + "proof_id": "92e2e996-b3cf-465f-a4c0-978a5566287d", + "circuit_name": "circom-multiplier2", + "circuit_id": "36ed7747-01de-4272-bd8e-e28802d5c668", + "circuit_type": "circom", + "date_created": "2024-01-15T01:25:52.815Z", + "perform_verify": false, + "status": "Ready", + "compute_time": "P0DT00H00M06.175574S", + "compute_times": { + "prove": 5.9231167789548635, + "total": 6.24663576297462, + "queued": 0.698281, + "clean_up": 0.0002771075814962387, + "file_setup": 0.29058355651795864, + "save_results": 0.002341846004128456, + "generate_witness_c": 0.029908066615462303 + }, + "file_sizes": { + "proof": 707, + "total": 713, + "public": 6, + "total_gb": 7.13e-7, + "total_mb": 0.000713 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "proof_input": null, + "proof": null, + "prover_implementation": { + "name": "GPU Tachyonic", + "smbc": 6, + "smcurve": "spparkx.alt_bn128", + "smreplicate": false + }, + "public": null, + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nopl nonstop_tsc cpuid extd_apicid aperfmperf rapl pni pclmulqdq monitor ssse3 fma cx16 pcid sse4_1 sse4_2 movbe popcnt aes xsave avx f16c rdrand lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt tce topoext perfctr_core perfctr_nb bpext perfctr_llc mwaitx cpb cat_l3 cdp_l3 invpcid_single hw_pstate ssbd mba ibrs ibpb stibp vmmcall fsgsbase bmi1 avx2 smep bmi2 invpcid cqm rdt_a rdseed adx smap clflushopt clwb sha_ni xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local clzero irperf xsaveerptr rdpru wbnoinvd amd_ppin brs arat npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold v_vmsave_vmload vgif v_spec_ctrl umip pku ospke vaes vpclmulqdq rdpid overflow_recov succor smca", + "Model:": "1", + "CPU(s):": "128", + "BogoMIPS:": "5199.98", + "L2 cache:": "32 MiB (64 instances)", + "L3 cache:": "256 MiB (8 instances)", + "Stepping:": "1", + "L1d cache:": "2 MiB (64 instances)", + "L1i cache:": "2 MiB (64 instances)", + "Socket(s):": "2", + "Vendor ID:": "AuthenticAMD", + "Byte Order:": "Little Endian", + "CPU family:": "25", + "Model name:": "AMD EPYC 7513 32-Core Processor", + "CPU max MHz:": "3681.6399", + "CPU min MHz:": "1500.0000", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "48 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "AMD-V", + "Frequency boost:": "enabled", + "NUMA node0 CPU(s):": "0-31,64-95", + "NUMA node1 CPU(s):": "32-63,96-127", + "Vulnerability Mds:": "Not affected", + "Core(s) per socket:": "32", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Not affected", + "On-line CPU(s) list:": "0,4-32,34-63,69-96,98-127", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "1-3,33,64-68,97", + "Vulnerability Meltdown:": "Not affected", + "Vulnerability Retbleed:": "Not affected", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; Retpolines, IBPB conditional, IBRS_FW, STIBP always-on, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "Not affected", + "Vulnerability Mmio stale data:": "Not affected", + "Vulnerability Tsx async abort:": "Not affected", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [ + { + "id": 0, + "name": "NVIDIA RTX A5000", + "uuid": "GPU-3ae041c5-a9ec-129a-cbf6-33b374bc92c0", + "driver": "525.125.06", + "serial": "1325121129330", + "memory_total_MiB": 24564 + } + ], + "num_gpus": 1 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null + }, + { + "proof_id": "82de6aa2-4108-43aa-85f0-0bc9c8e6fb8e", + "circuit_name": "circom-multiplier2", + "circuit_id": "eb7be2ed-0d7e-4036-a5dc-3b36b0d9907c", + "circuit_type": "circom", + "date_created": "2024-01-15T01:24:19.052Z", + "perform_verify": false, + "status": "Ready", + "compute_time": "P0DT00H00M06.115018S", + "compute_times": { + "prove": 5.91022140905261, + "total": 6.194757051765919, + "queued": 0.684503, + "clean_up": 0.00032767653465270996, + "file_setup": 0.2622530199587345, + "save_results": 0.003049323335289955, + "generate_witness_c": 0.018631482496857643 + }, + "file_sizes": { + "proof": 707, + "total": 713, + "public": 6, + "total_gb": 7.13e-7, + "total_mb": 0.000713 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "proof_input": null, + "proof": null, + "prover_implementation": { + "name": "GPU Tachyonic", + "smbc": 6, + "smcurve": "spparkx.alt_bn128", + "smreplicate": false + }, + "public": null, + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nopl nonstop_tsc cpuid extd_apicid aperfmperf rapl pni pclmulqdq monitor ssse3 fma cx16 pcid sse4_1 sse4_2 movbe popcnt aes xsave avx f16c rdrand lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt tce topoext perfctr_core perfctr_nb bpext perfctr_llc mwaitx cpb cat_l3 cdp_l3 invpcid_single hw_pstate ssbd mba ibrs ibpb stibp vmmcall fsgsbase bmi1 avx2 smep bmi2 invpcid cqm rdt_a rdseed adx smap clflushopt clwb sha_ni xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local clzero irperf xsaveerptr rdpru wbnoinvd amd_ppin brs arat npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold v_vmsave_vmload vgif v_spec_ctrl umip pku ospke vaes vpclmulqdq rdpid overflow_recov succor smca", + "Model:": "1", + "CPU(s):": "128", + "BogoMIPS:": "5199.98", + "L2 cache:": "32 MiB (64 instances)", + "L3 cache:": "256 MiB (8 instances)", + "Stepping:": "1", + "L1d cache:": "2 MiB (64 instances)", + "L1i cache:": "2 MiB (64 instances)", + "Socket(s):": "2", + "Vendor ID:": "AuthenticAMD", + "Byte Order:": "Little Endian", + "CPU family:": "25", + "Model name:": "AMD EPYC 7513 32-Core Processor", + "CPU max MHz:": "3681.6399", + "CPU min MHz:": "1500.0000", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "48 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "AMD-V", + "Frequency boost:": "enabled", + "NUMA node0 CPU(s):": "0-31,64-95", + "NUMA node1 CPU(s):": "32-63,96-127", + "Vulnerability Mds:": "Not affected", + "Core(s) per socket:": "32", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Not affected", + "On-line CPU(s) list:": "0,4-32,34-63,69-96,98-127", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "1-3,33,64-68,97", + "Vulnerability Meltdown:": "Not affected", + "Vulnerability Retbleed:": "Not affected", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; Retpolines, IBPB conditional, IBRS_FW, STIBP always-on, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "Not affected", + "Vulnerability Mmio stale data:": "Not affected", + "Vulnerability Tsx async abort:": "Not affected", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [ + { + "id": 0, + "name": "NVIDIA RTX A5000", + "uuid": "GPU-3ae041c5-a9ec-129a-cbf6-33b374bc92c0", + "driver": "525.125.06", + "serial": "1325121129330", + "memory_total_MiB": 24564 + } + ], + "num_gpus": 1 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null + }, + { + "proof_id": "250bec19-3e55-44aa-8259-e0c16f81740a", + "circuit_name": "circom-multiplier2", + "circuit_id": "11e78b06-44fb-44b4-b85f-d681e677482c", + "circuit_type": "circom", + "date_created": "2024-01-15T01:21:13.615Z", + "perform_verify": false, + "status": "Ready", + "compute_time": "P0DT00H00M06.117480S", + "compute_times": { + "prove": 5.914364781230688, + "total": 6.191053604707122, + "queued": 15.514631, + "clean_up": 0.00021071918308734894, + "file_setup": 0.24732953310012817, + "save_results": 0.0019527468830347061, + "generate_witness_c": 0.026822445914149284 + }, + "file_sizes": { + "proof": 707, + "total": 713, + "public": 6, + "total_gb": 7.13e-7, + "total_mb": 0.000713 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "proof_input": null, + "proof": null, + "prover_implementation": { + "name": "GPU Tachyonic", + "smbc": 6, + "smcurve": "spparkx.alt_bn128", + "smreplicate": false + }, + "public": null, + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nopl nonstop_tsc cpuid extd_apicid aperfmperf rapl pni pclmulqdq monitor ssse3 fma cx16 pcid sse4_1 sse4_2 movbe popcnt aes xsave avx f16c rdrand lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt tce topoext perfctr_core perfctr_nb bpext perfctr_llc mwaitx cpb cat_l3 cdp_l3 invpcid_single hw_pstate ssbd mba ibrs ibpb stibp vmmcall fsgsbase bmi1 avx2 smep bmi2 invpcid cqm rdt_a rdseed adx smap clflushopt clwb sha_ni xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local clzero irperf xsaveerptr rdpru wbnoinvd amd_ppin brs arat npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold v_vmsave_vmload vgif v_spec_ctrl umip pku ospke vaes vpclmulqdq rdpid overflow_recov succor smca", + "Model:": "1", + "CPU(s):": "128", + "BogoMIPS:": "5199.98", + "L2 cache:": "32 MiB (64 instances)", + "L3 cache:": "256 MiB (8 instances)", + "Stepping:": "1", + "L1d cache:": "2 MiB (64 instances)", + "L1i cache:": "2 MiB (64 instances)", + "Socket(s):": "2", + "Vendor ID:": "AuthenticAMD", + "Byte Order:": "Little Endian", + "CPU family:": "25", + "Model name:": "AMD EPYC 7513 32-Core Processor", + "CPU max MHz:": "3681.6399", + "CPU min MHz:": "1500.0000", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "48 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "AMD-V", + "Frequency boost:": "enabled", + "NUMA node0 CPU(s):": "0-31,64-95", + "NUMA node1 CPU(s):": "32-63,96-127", + "Vulnerability Mds:": "Not affected", + "Core(s) per socket:": "32", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Not affected", + "On-line CPU(s) list:": "0,4-32,34-63,69-96,98-127", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "1-3,33,64-68,97", + "Vulnerability Meltdown:": "Not affected", + "Vulnerability Retbleed:": "Not affected", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; Retpolines, IBPB conditional, IBRS_FW, STIBP always-on, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "Not affected", + "Vulnerability Mmio stale data:": "Not affected", + "Vulnerability Tsx async abort:": "Not affected", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [ + { + "id": 0, + "name": "NVIDIA RTX A5000", + "uuid": "GPU-3ae041c5-a9ec-129a-cbf6-33b374bc92c0", + "driver": "525.125.06", + "serial": "1325121129330", + "memory_total_MiB": 24564 + } + ], + "num_gpus": 1 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null + } + ], + "rawHeaders": [ + "Content-Length", + "112612", + "Content-Type", + "application/json; charset=utf-8", + "Date", + "Mon, 15 Jan 2024 13:31:25 GMT", + "Referrer-Policy", + "same-origin", + "Server", + "gunicorn", + "Vary", + "Cookie, origin", + "X-Content-Type-Options", + "nosniff", + "X-Frame-Options", + "SAMEORIGIN", + "Connection", + "close" + ], + "responseIsBinary": false + }, + { + "scope": "https://sindri.app:443", + "method": "POST", + "path": "/api/v1/circuit/create", + "body": "2d2d2d2d2d2d5765624b6974466f726d426f756e64617279306275513864364568576373395839640d0a436f6e74656e742d446973706f736974696f6e3a20666f726d2d646174613b206e616d653d2274616773220d0a0d0a66726f6d2d74617262616c6c0d0a2d2d2d2d2d2d5765624b6974466f726d426f756e64617279306275513864364568576373395839640d0a436f6e74656e742d446973706f736974696f6e3a20666f726d2d646174613b206e616d653d2266696c6573223b2066696c656e616d653d22636972636f6d2d6d756c7469706c696572322e74677a220d0a436f6e74656e742d547970653a206170706c69636174696f6e2f6f637465742d73747265616d0d0a0d0a1f8b080091e8a2650003ed54cd6ee23010e69ca718a13d002db1317122c172ea5e7b6a5fc018937837b12ddba15a557df74de2405b95b67b405ba1e5bb4c32fff67c632e2dd7d5b4aa4b2f4d29852568706a608c334aa1936990982441f680594229a6094db314f08c66840e809ebc9323a89d67b669c53195b3522af18e5fe3b6dd7e90a73fc7419e09f8dbf93ba93656c63f9d56a7a9d1dc479a24efcf7f4ec87efe4986e78049e3381f003e4df98ff19fcfff3102187e73bc10151b2e6058786fdc02ed49c08c41cc48b49bf59a69c594dc0ae7a721a6a3c9f0bacda25825da146f2915ecadbe96fefeb779e1d69b6abbeb946b45681274c6ea9d54f95d5ba6b3e556fb629606eb83f44a3877a32b234b61bb845757c3e829faea1b3d2f1cd9ff7e4e71309da0c667fb9f66f37effd38484fda734bdecffbf80b12caf1884590389718c97518426d17d211df454002f2a53322fa05946fecb812f98070eb2fd12b0270f675e6a057a0b0c98dac03a8eee746db980d12db3bc8019b90682c97cbc8068ffd06c34773dd562a9512ebc6fb67eda4ec58b0d7ab0b2fbef3b71e86f0379f732bc0e9d2080283a1ce6f699f4301ac3636b040084e087e025b387e338992b56bab87168ece10fa432b507b63ca25cbf56eadab75abe7c2e70a395f39649e5f759397c5fad9a8b9b84e8a7c6b33d82564279a81a4f58bd6c78345e7e35752eb8e08233c71f60b9d96f000e00000d0a2d2d2d2d2d2d5765624b6974466f726d426f756e64617279306275513864364568576373395839642d2d0d0a0d0a", + "status": 201, + "response": { + "circuit_id": "1f9793dd-fc3a-40a7-8054-cef057abd541", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-15T13:31:25.616Z", + "proving_scheme": "groth16", + "status": "Queued", + "compute_time": null, + "compute_times": null, + "file_sizes": { + "code.tar.gz": 529, + "total": 529, + "total_mb": 0.000529, + "total_gb": 5.29e-7 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tgz", + "worker_hardware": null, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": null, + "num_constraints": null, + "num_outputs": null, + "num_private_inputs": null, + "num_public_inputs": null, + "num_wires": null, + "trusted_setup_file": "", + "witness_compiler": "c++" + }, + "rawHeaders": [ + "Content-Length", + "747", + "Content-Type", + "application/json; charset=utf-8", + "Date", + "Mon, 15 Jan 2024 13:31:26 GMT", + "Referrer-Policy", + "same-origin", + "Server", + "gunicorn", + "Vary", + "Cookie, origin", + "X-Content-Type-Options", + "nosniff", + "X-Frame-Options", + "SAMEORIGIN", + "Connection", + "close" + ], + "responseIsBinary": false + }, + { + "scope": "https://sindri.app:443", + "method": "POST", + "path": "/api/v1/circuit/create", + "body": "2d2d2d2d2d2d5765624b6974466f726d426f756e64617279306275513864364568576373395839640d0a436f6e74656e742d446973706f736974696f6e3a20666f726d2d646174613b206e616d653d2274616773220d0a0d0a66726f6d2d74617262616c6c2d666f722d6765742d636972637569740d0a2d2d2d2d2d2d5765624b6974466f726d426f756e64617279306275513864364568576373395839640d0a436f6e74656e742d446973706f736974696f6e3a20666f726d2d646174613b206e616d653d2266696c6573223b2066696c656e616d653d22636972636f6d2d6d756c7469706c696572322e74677a220d0a436f6e74656e742d547970653a206170706c69636174696f6e2f6f637465742d73747265616d0d0a0d0a1f8b080091e8a2650003ed54cd6ee23010e69ca718a13d002db1317122c172ea5e7b6a5fc018937837b12ddba15a557df74de2405b95b67b405ba1e5bb4c32fff67c632e2dd7d5b4aa4b2f4d29852568706a608c334aa1936990982441f680594229a6094db314f08c66840e809ebc9323a89d67b669c53195b3522af18e5fe3b6dd7e90a73fc7419e09f8dbf93ba93656c63f9d56a7a9d1dc479a24efcf7f4ec87efe4986e78049e3381f003e4df98ff19fcfff3102187e73bc10151b2e6058786fdc02ed49c08c41cc48b49bf59a69c594dc0ae7a721a6a3c9f0bacda25825da146f2915ecadbe96fefeb779e1d69b6abbeb946b45681274c6ea9d54f95d5ba6b3e556fb629606eb83f44a3877a32b234b61bb845757c3e829faea1b3d2f1cd9ff7e4e71309da0c667fb9f66f37effd38484fda734bdecffbf80b12caf1884590389718c97518426d17d211df454002f2a53322fa05946fecb812f98070eb2fd12b0270f675e6a057a0b0c98dac03a8eee746db980d12db3bc8019b90682c97cbc8068ffd06c34773dd562a9512ebc6fb67eda4ec58b0d7ab0b2fbef3b71e86f0379f732bc0e9d2080283a1ce6f699f4301ac3636b040084e087e025b387e338992b56bab87168ece10fa432b507b63ca25cbf56eadab75abe7c2e70a395f39649e5f759397c5fad9a8b9b84e8a7c6b33d82564279a81a4f58bd6c78345e7e35752eb8e08233c71f60b9d96f000e00000d0a2d2d2d2d2d2d5765624b6974466f726d426f756e64617279306275513864364568576373395839642d2d0d0a0d0a", + "status": 201, + "response": { + "circuit_id": "0c79ed16-2255-42d7-9d50-69b2a48e7a7e", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-15T13:31:25.692Z", + "proving_scheme": "groth16", + "status": "Queued", + "compute_time": null, + "compute_times": null, + "file_sizes": { + "code.tar.gz": 529, + "total": 529, + "total_mb": 0.000529, + "total_gb": 5.29e-7 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tgz", + "worker_hardware": null, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": null, + "num_constraints": null, + "num_outputs": null, + "num_private_inputs": null, + "num_public_inputs": null, + "num_wires": null, + "trusted_setup_file": "", + "witness_compiler": "c++" + }, + "rawHeaders": [ + "Content-Length", + "747", + "Content-Type", + "application/json; charset=utf-8", + "Date", + "Mon, 15 Jan 2024 13:31:26 GMT", + "Referrer-Policy", + "same-origin", + "Server", + "gunicorn", + "Vary", + "Cookie, origin", + "X-Content-Type-Options", + "nosniff", + "X-Frame-Options", + "SAMEORIGIN", + "Connection", + "close" + ], + "responseIsBinary": false + }, + { + "scope": "https://sindri.app:443", + "method": "GET", + "path": "/api/v1/circuit/4e4d2d46-51d3-4194-b234-bdbb6a4f90fa/detail?include_verification_key=false", + "body": "", + "status": 200, + "response": { + "circuit_id": "4e4d2d46-51d3-4194-b234-bdbb6a4f90fa", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-15T13:31:24.753Z", + "proving_scheme": "groth16", + "status": "In Progress", + "compute_time": null, + "compute_times": { + "total": 0.0004055500030517578, + "queued": 1.196517 + }, + "file_sizes": { + "total": 497, + "total_gb": 4.97e-7, + "total_mb": 0.000497, + "code.tar.gz": 497 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", + "Model:": "85", + "CPU(s):": "96", + "BogoMIPS:": "5400.00", + "L2 cache:": "48 MiB (48 instances)", + "L3 cache:": "66 MiB (2 instances)", + "Stepping:": "4", + "L1d cache:": "1.5 MiB (48 instances)", + "L1i cache:": "1.5 MiB (48 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "46 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", + "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", + "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Core(s) per socket:": "24", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", + "On-line CPU(s) list:": "0,1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41-49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89-95", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88", + "Vulnerability Meltdown:": "Mitigation; PTI", + "Vulnerability Retbleed:": "Mitigation; IBRS", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", + "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": null, + "num_constraints": null, + "num_outputs": null, + "num_private_inputs": null, + "num_public_inputs": null, + "num_wires": null, + "trusted_setup_file": "", + "witness_compiler": "c++" + }, + "rawHeaders": [ + "Content-Length", + "3858", + "Content-Type", + "application/json; charset=utf-8", + "Date", + "Mon, 15 Jan 2024 13:31:26 GMT", + "Referrer-Policy", + "same-origin", + "Server", + "gunicorn", + "Vary", + "Cookie, origin", + "X-Content-Type-Options", + "nosniff", + "X-Frame-Options", + "SAMEORIGIN", + "Connection", + "close" + ], + "responseIsBinary": false + }, + { + "scope": "https://sindri.app:443", + "method": "POST", + "path": "/api/v1/circuit/create", + "body": "2d2d2d2d2d2d5765624b6974466f726d426f756e64617279306275513864364568576373395839640d0a436f6e74656e742d446973706f736974696f6e3a20666f726d2d646174613b206e616d653d2274616773220d0a0d0a66726f6d2d74617262616c6c2d666f722d616c6c2d636972637569742d70726f6f66730d0a2d2d2d2d2d2d5765624b6974466f726d426f756e64617279306275513864364568576373395839640d0a436f6e74656e742d446973706f736974696f6e3a20666f726d2d646174613b206e616d653d2266696c6573223b2066696c656e616d653d22636972636f6d2d6d756c7469706c696572322e74677a220d0a436f6e74656e742d547970653a206170706c69636174696f6e2f6f637465742d73747265616d0d0a0d0a1f8b080091e8a2650003ed54cd6ee23010e69ca718a13d002db1317122c172ea5e7b6a5fc018937837b12ddba15a557df74de2405b95b67b405ba1e5bb4c32fff67c632e2dd7d5b4aa4b2f4d29852568706a608c334aa1936990982441f680594229a6094db314f08c66840e809ebc9323a89d67b669c53195b3522af18e5fe3b6dd7e90a73fc7419e09f8dbf93ba93656c63f9d56a7a9d1dc479a24efcf7f4ec87efe4986e78049e3381f003e4df98ff19fcfff3102187e73bc10151b2e6058786fdc02ed49c08c41cc48b49bf59a69c594dc0ae7a721a6a3c9f0bacda25825da146f2915ecadbe96fefeb779e1d69b6abbeb946b45681274c6ea9d54f95d5ba6b3e556fb629606eb83f44a3877a32b234b61bb845757c3e829faea1b3d2f1cd9ff7e4e71309da0c667fb9f66f37effd38484fda734bdecffbf80b12caf1884590389718c97518426d17d211df454002f2a53322fa05946fecb812f98070eb2fd12b0270f675e6a057a0b0c98dac03a8eee746db980d12db3bc8019b90682c97cbc8068ffd06c34773dd562a9512ebc6fb67eda4ec58b0d7ab0b2fbef3b71e86f0379f732bc0e9d2080283a1ce6f699f4301ac3636b040084e087e025b387e338992b56bab87168ece10fa432b507b63ca25cbf56eadab75abe7c2e70a395f39649e5f759397c5fad9a8b9b84e8a7c6b33d82564279a81a4f58bd6c78345e7e35752eb8e08233c71f60b9d96f000e00000d0a2d2d2d2d2d2d5765624b6974466f726d426f756e64617279306275513864364568576373395839642d2d0d0a0d0a", + "status": 201, + "response": { + "circuit_id": "08356d78-f494-441e-bfdb-b9f1c33d1c79", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-15T13:31:26.040Z", + "proving_scheme": "groth16", + "status": "Queued", + "compute_time": null, + "compute_times": null, + "file_sizes": { + "code.tar.gz": 529, + "total": 529, + "total_mb": 0.000529, + "total_gb": 5.29e-7 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tgz", + "worker_hardware": null, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": null, + "num_constraints": null, + "num_outputs": null, + "num_private_inputs": null, + "num_public_inputs": null, + "num_wires": null, + "trusted_setup_file": "", + "witness_compiler": "c++" + }, + "rawHeaders": [ + "Content-Length", + "747", + "Content-Type", + "application/json; charset=utf-8", + "Date", + "Mon, 15 Jan 2024 13:31:26 GMT", + "Referrer-Policy", + "same-origin", + "Server", + "gunicorn", + "Vary", + "Cookie, origin", + "X-Content-Type-Options", + "nosniff", + "X-Frame-Options", + "SAMEORIGIN", + "Connection", + "close" + ], + "responseIsBinary": false + }, + { + "scope": "https://sindri.app:443", + "method": "GET", + "path": "/api/v1/circuit/4cb330c7-66c6-4cf5-a68f-c4ef96ac9f2f/detail?include_verification_key=false", + "body": "", + "status": 200, + "response": { + "circuit_id": "4cb330c7-66c6-4cf5-a68f-c4ef96ac9f2f", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-15T13:31:24.744Z", + "proving_scheme": "groth16", + "status": "In Progress", + "compute_time": null, + "compute_times": { + "total": 0.000584769994020462, + "queued": 1.213266 + }, + "file_sizes": { + "total": 499, + "total_gb": 4.99e-7, + "total_mb": 0.000499, + "code.tar.gz": 499 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", + "Model:": "85", + "CPU(s):": "96", + "BogoMIPS:": "5400.00", + "L2 cache:": "48 MiB (48 instances)", + "L3 cache:": "66 MiB (2 instances)", + "Stepping:": "4", + "L1d cache:": "1.5 MiB (48 instances)", + "L1i cache:": "1.5 MiB (48 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "46 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", + "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", + "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Core(s) per socket:": "24", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", + "On-line CPU(s) list:": "0,1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41-49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89-95", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88", + "Vulnerability Meltdown:": "Mitigation; PTI", + "Vulnerability Retbleed:": "Mitigation; IBRS", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", + "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": null, + "num_constraints": null, + "num_outputs": null, + "num_private_inputs": null, + "num_public_inputs": null, + "num_wires": null, + "trusted_setup_file": "", + "witness_compiler": "c++" + }, + "rawHeaders": [ + "Content-Length", + "3857", + "Content-Type", + "application/json; charset=utf-8", + "Date", + "Mon, 15 Jan 2024 13:31:26 GMT", + "Referrer-Policy", + "same-origin", + "Server", + "gunicorn", + "Vary", + "Cookie, origin", + "X-Content-Type-Options", + "nosniff", + "X-Frame-Options", + "SAMEORIGIN", + "Connection", + "close" + ], + "responseIsBinary": false + }, + { + "scope": "https://sindri.app:443", + "method": "POST", + "path": "/api/v1/circuit/create", + "body": "2d2d2d2d2d2d5765624b6974466f726d426f756e64617279306275513864364568576373395839640d0a436f6e74656e742d446973706f736974696f6e3a20666f726d2d646174613b206e616d653d2274616773220d0a0d0a66726f6d2d74617262616c6c2d666f722d70726f76652d636972637569740d0a2d2d2d2d2d2d5765624b6974466f726d426f756e64617279306275513864364568576373395839640d0a436f6e74656e742d446973706f736974696f6e3a20666f726d2d646174613b206e616d653d2266696c6573223b2066696c656e616d653d22636972636f6d2d6d756c7469706c696572322e74677a220d0a436f6e74656e742d547970653a206170706c69636174696f6e2f6f637465742d73747265616d0d0a0d0a1f8b080091e8a2650003ed54cd6ee23010e69ca718a13d002db1317122c172ea5e7b6a5fc018937837b12ddba15a557df74de2405b95b67b405ba1e5bb4c32fff67c632e2dd7d5b4aa4b2f4d29852568706a608c334aa1936990982441f680594229a6094db314f08c66840e809ebc9323a89d67b669c53195b3522af18e5fe3b6dd7e90a73fc7419e09f8dbf93ba93656c63f9d56a7a9d1dc479a24efcf7f4ec87efe4986e78049e3381f003e4df98ff19fcfff3102187e73bc10151b2e6058786fdc02ed49c08c41cc48b49bf59a69c594dc0ae7a721a6a3c9f0bacda25825da146f2915ecadbe96fefeb779e1d69b6abbeb946b45681274c6ea9d54f95d5ba6b3e556fb629606eb83f44a3877a32b234b61bb845757c3e829faea1b3d2f1cd9ff7e4e71309da0c667fb9f66f37effd38484fda734bdecffbf80b12caf1884590389718c97518426d17d211df454002f2a53322fa05946fecb812f98070eb2fd12b0270f675e6a057a0b0c98dac03a8eee746db980d12db3bc8019b90682c97cbc8068ffd06c34773dd562a9512ebc6fb67eda4ec58b0d7ab0b2fbef3b71e86f0379f732bc0e9d2080283a1ce6f699f4301ac3636b040084e087e025b387e338992b56bab87168ece10fa432b507b63ca25cbf56eadab75abe7c2e70a395f39649e5f759397c5fad9a8b9b84e8a7c6b33d82564279a81a4f58bd6c78345e7e35752eb8e08233c71f60b9d96f000e00000d0a2d2d2d2d2d2d5765624b6974466f726d426f756e64617279306275513864364568576373395839642d2d0d0a0d0a", + "status": 201, + "response": { + "circuit_id": "3e42bb6b-fb5c-438f-b93d-491b396b6f23", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-15T13:31:26.518Z", + "proving_scheme": "groth16", + "status": "Queued", + "compute_time": null, + "compute_times": null, + "file_sizes": { + "code.tar.gz": 529, + "total": 529, + "total_mb": 0.000529, + "total_gb": 5.29e-7 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tgz", + "worker_hardware": null, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": null, + "num_constraints": null, + "num_outputs": null, + "num_private_inputs": null, + "num_public_inputs": null, + "num_wires": null, + "trusted_setup_file": "", + "witness_compiler": "c++" + }, + "rawHeaders": [ + "Content-Length", + "747", + "Content-Type", + "application/json; charset=utf-8", + "Date", + "Mon, 15 Jan 2024 13:31:27 GMT", + "Referrer-Policy", + "same-origin", + "Server", + "gunicorn", + "Vary", + "Cookie, origin", + "X-Content-Type-Options", + "nosniff", + "X-Frame-Options", + "SAMEORIGIN", + "Connection", + "close" + ], + "responseIsBinary": false + }, + { + "scope": "https://sindri.app:443", + "method": "GET", + "path": "/api/v1/proof/a0cd0c31-178d-40ab-befd-56240cfac47b/detail?include_proof_input=true&include_proof=true&include_public=true&include_verification_key=true", + "body": "", + "status": 200, + "response": { + "proof_id": "a0cd0c31-178d-40ab-befd-56240cfac47b", + "circuit_name": "circom-multiplier2", + "circuit_id": "ddd1b9a9-83e6-41d1-8936-3bff88aa6921", + "circuit_type": "circom", + "date_created": "2024-01-15T13:29:36.311Z", + "perform_verify": false, + "status": "Ready", + "compute_time": "P0DT00H00M02.092256S", + "compute_times": { + "prove": 0.36259699426591396, + "total": 2.1656957883387804, + "queued": 5.830407, + "clean_up": 0.0003967471420764923, + "file_setup": 0.6623526718467474, + "save_results": 0.18246298655867577, + "generate_witness_c": 0.9574985150247812 + }, + "file_sizes": { + "proof": 705, + "total": 711, + "public": 6, + "total_gb": 7.11e-7, + "total_mb": 0.000711 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "proof_input": { + "a": "5", + "b": "4" + }, + "proof": { + "pi_a": [ + "5346672792612665895879097684889464681600545854577243328960502143955185642576", + "3170571356438707584672941324135913538071385922458856792406831050435298505634", + "1" + ], + "pi_b": [ + [ + "10623862551051493546947422692954097054424010117276895010518953837021259367402", + "13610091419728856434879250805362685082524466882565823798990441615623849871792" + ], + [ + "2010204130190154610305999773731005536504094683615436736763903894799874388088", + "2684807615561583827115918125686218300611118526968032643802029466713497255955" + ], + [ + "1", + "0" + ] + ], + "pi_c": [ + "555967559459638015933464363066764271136863544701016147190582936791869795641", + "20231737602682548286853454243258109456453746642462103822807470357334953299831", + "1" + ], + "protocol": "groth16" + }, + "prover_implementation": { + "name": "GPU Tachyonic", + "smbc": 6, + "smcurve": "spparkx.alt_bn128", + "smreplicate": false + }, + "public": [ + "20" + ], + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nopl nonstop_tsc cpuid extd_apicid aperfmperf rapl pni pclmulqdq monitor ssse3 fma cx16 pcid sse4_1 sse4_2 movbe popcnt aes xsave avx f16c rdrand lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt tce topoext perfctr_core perfctr_nb bpext perfctr_llc mwaitx cpb cat_l3 cdp_l3 invpcid_single hw_pstate ssbd mba ibrs ibpb stibp vmmcall fsgsbase bmi1 avx2 smep bmi2 invpcid cqm rdt_a rdseed adx smap clflushopt clwb sha_ni xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local clzero irperf xsaveerptr rdpru wbnoinvd amd_ppin brs arat npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold v_vmsave_vmload vgif v_spec_ctrl umip pku ospke vaes vpclmulqdq rdpid overflow_recov succor smca", + "Model:": "1", + "CPU(s):": "128", + "BogoMIPS:": "5190.16", + "L2 cache:": "32 MiB (64 instances)", + "L3 cache:": "256 MiB (8 instances)", + "Stepping:": "1", + "L1d cache:": "2 MiB (64 instances)", + "L1i cache:": "2 MiB (64 instances)", + "Socket(s):": "2", + "Vendor ID:": "AuthenticAMD", + "Byte Order:": "Little Endian", + "CPU family:": "25", + "Model name:": "AMD EPYC 7513 32-Core Processor", + "CPU max MHz:": "3681.6399", + "CPU min MHz:": "1500.0000", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "48 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "AMD-V", + "Frequency boost:": "enabled", + "NUMA node0 CPU(s):": "0-31,64-95", + "NUMA node1 CPU(s):": "32-63,96-127", + "Vulnerability Mds:": "Not affected", + "Core(s) per socket:": "32", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Not affected", + "On-line CPU(s) list:": "0,2-4,6-31,35-64,66-68,70-95,99-127", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "1,5,32-34,65,69,96-98", + "Vulnerability Meltdown:": "Not affected", + "Vulnerability Retbleed:": "Not affected", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; Retpolines, IBPB conditional, IBRS_FW, STIBP always-on, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "Not affected", + "Vulnerability Mmio stale data:": "Not affected", + "Vulnerability Tsx async abort:": "Not affected", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [ + { + "id": 0, + "name": "NVIDIA RTX A6000", + "uuid": "GPU-bfa26f0f-c563-4d7b-2157-ca283ea42f01", + "driver": "525.125.06", + "serial": "1325121022674", + "memory_total_MiB": 49140 + } + ], + "num_gpus": 1 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": { + "protocol": "groth16", + "curve": "bn128", + "nPublic": 1, + "vk_alpha_1": [ + "20491192805390485299153009773594534940189261866228447918068658471970481763042", + "9383485363053290200918347156157836566562967994039712273449902621266178545958", + "1" + ], + "vk_beta_2": [ + [ + "6375614351688725206403948262868962793625744043794305715222011528459656738731", + "4252822878758300859123897981450591353533073413197771768651442665752259397132" + ], + [ + "10505242626370262277552901082094356697409835680220590971873171140371331206856", + "21847035105528745403288232691147584728191162732299865338377159692350059136679" + ], + [ + "1", + "0" + ] + ], + "vk_gamma_2": [ + [ + "10857046999023057135944570762232829481370756359578518086990519993285655852781", + "11559732032986387107991004021392285783925812861821192530917403151452391805634" + ], + [ + "8495653923123431417604973247489272438418190587263600148770280649306958101930", + "4082367875863433681332203403145435568316851327593401208105741076214120093531" + ], + [ + "1", + "0" + ] + ], + "vk_delta_2": [ + [ + "10857046999023057135944570762232829481370756359578518086990519993285655852781", + "11559732032986387107991004021392285783925812861821192530917403151452391805634" + ], + [ + "8495653923123431417604973247489272438418190587263600148770280649306958101930", + "4082367875863433681332203403145435568316851327593401208105741076214120093531" + ], + [ + "1", + "0" + ] + ], + "vk_alphabeta_12": [ + [ + [ + "2029413683389138792403550203267699914886160938906632433982220835551125967885", + "21072700047562757817161031222997517981543347628379360635925549008442030252106" + ], + [ + "5940354580057074848093997050200682056184807770593307860589430076672439820312", + "12156638873931618554171829126792193045421052652279363021382169897324752428276" + ], + [ + "7898200236362823042373859371574133993780991612861777490112507062703164551277", + "7074218545237549455313236346927434013100842096812539264420499035217050630853" + ] + ], + [ + [ + "7077479683546002997211712695946002074877511277312570035766170199895071832130", + "10093483419865920389913245021038182291233451549023025229112148274109565435465" + ], + [ + "4595479056700221319381530156280926371456704509942304414423590385166031118820", + "19831328484489333784475432780421641293929726139240675179672856274388269393268" + ], + [ + "11934129596455521040620786944827826205713621633706285934057045369193958244500", + "8037395052364110730298837004334506829870972346962140206007064471173334027475" + ] + ] + ], + "IC": [ + [ + "6819801395408938350212900248749732364821477541620635511814266536599629892365", + "9092252330033992554755034971584864587974280972948086568597554018278609861372", + "1" + ], + [ + "17882351432929302592725330552407222299541667716607588771282887857165175611387", + "18907419617206324833977586007131055763810739835484972981819026406579664278293", + "1" + ] + ] + }, + "error": null + }, + "rawHeaders": [ + "Content-Length", + "7132", + "Content-Type", + "application/json; charset=utf-8", + "Date", + "Mon, 15 Jan 2024 13:31:28 GMT", + "Referrer-Policy", + "same-origin", + "Server", + "gunicorn", + "Vary", + "Cookie, origin", + "X-Content-Type-Options", + "nosniff", + "X-Frame-Options", + "SAMEORIGIN", + "Connection", + "close" + ], + "responseIsBinary": false + }, + { + "scope": "https://sindri.app:443", + "method": "GET", + "path": "/api/v1/circuit/1f9793dd-fc3a-40a7-8054-cef057abd541/detail?include_verification_key=false", + "body": "", + "status": 200, + "response": { + "circuit_id": "1f9793dd-fc3a-40a7-8054-cef057abd541", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-15T13:31:25.616Z", + "proving_scheme": "groth16", + "status": "In Progress", + "compute_time": null, + "compute_times": { + "total": 0.00030360370874404907, + "queued": 1.091233 + }, + "file_sizes": { + "total": 529, + "total_gb": 5.29e-7, + "total_mb": 0.000529, + "code.tar.gz": 529 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tgz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", + "Model:": "85", + "CPU(s):": "96", + "BogoMIPS:": "5400.00", + "L2 cache:": "48 MiB (48 instances)", + "L3 cache:": "66 MiB (2 instances)", + "Stepping:": "4", + "L1d cache:": "1.5 MiB (48 instances)", + "L1i cache:": "1.5 MiB (48 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "46 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", + "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", + "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Core(s) per socket:": "24", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", + "On-line CPU(s) list:": "0,1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41-49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89-95", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88", + "Vulnerability Meltdown:": "Mitigation; PTI", + "Vulnerability Retbleed:": "Mitigation; IBRS", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", + "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": null, + "num_constraints": null, + "num_outputs": null, + "num_private_inputs": null, + "num_public_inputs": null, + "num_wires": null, + "trusted_setup_file": "", + "witness_compiler": "c++" + }, + "rawHeaders": [ + "Content-Length", + "3856", + "Content-Type", + "application/json; charset=utf-8", + "Date", + "Mon, 15 Jan 2024 13:31:28 GMT", + "Referrer-Policy", + "same-origin", + "Server", + "gunicorn", + "Vary", + "Cookie, origin", + "X-Content-Type-Options", + "nosniff", + "X-Frame-Options", + "SAMEORIGIN", + "Connection", + "close" + ], + "responseIsBinary": false + }, + { + "scope": "https://sindri.app:443", + "method": "GET", + "path": "/api/v1/circuit/0c79ed16-2255-42d7-9d50-69b2a48e7a7e/detail?include_verification_key=false", + "body": "", + "status": 200, + "response": { + "circuit_id": "0c79ed16-2255-42d7-9d50-69b2a48e7a7e", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-15T13:31:25.692Z", + "proving_scheme": "groth16", + "status": "In Progress", + "compute_time": null, + "compute_times": { + "total": 0.00043579190969467163, + "queued": 1.082236 + }, + "file_sizes": { + "total": 529, + "total_gb": 5.29e-7, + "total_mb": 0.000529, + "code.tar.gz": 529 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tgz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", + "Model:": "85", + "CPU(s):": "96", + "BogoMIPS:": "5400.00", + "L2 cache:": "48 MiB (48 instances)", + "L3 cache:": "66 MiB (2 instances)", + "Stepping:": "4", + "L1d cache:": "1.5 MiB (48 instances)", + "L1i cache:": "1.5 MiB (48 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "46 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", + "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", + "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Core(s) per socket:": "24", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", + "On-line CPU(s) list:": "0,1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41-49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89-95", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88", + "Vulnerability Meltdown:": "Mitigation; PTI", + "Vulnerability Retbleed:": "Mitigation; IBRS", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", + "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": null, + "num_constraints": null, + "num_outputs": null, + "num_private_inputs": null, + "num_public_inputs": null, + "num_wires": null, + "trusted_setup_file": "", + "witness_compiler": "c++" + }, + "rawHeaders": [ + "Content-Length", + "3856", + "Content-Type", + "application/json; charset=utf-8", + "Date", + "Mon, 15 Jan 2024 13:31:28 GMT", + "Referrer-Policy", + "same-origin", + "Server", + "gunicorn", + "Vary", + "Cookie, origin", + "X-Content-Type-Options", + "nosniff", + "X-Frame-Options", + "SAMEORIGIN", + "Connection", + "close" + ], + "responseIsBinary": false + }, + { + "scope": "https://sindri.app:443", + "method": "GET", + "path": "/api/v1/circuit/08356d78-f494-441e-bfdb-b9f1c33d1c79/detail?include_verification_key=false", + "body": "", + "status": 200, + "response": { + "circuit_id": "08356d78-f494-441e-bfdb-b9f1c33d1c79", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-15T13:31:26.040Z", + "proving_scheme": "groth16", + "status": "In Progress", + "compute_time": null, + "compute_times": { + "total": 0.00047212280333042145, + "queued": 1.207576 + }, + "file_sizes": { + "total": 529, + "total_gb": 5.29e-7, + "total_mb": 0.000529, + "code.tar.gz": 529 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tgz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", + "Model:": "85", + "CPU(s):": "96", + "BogoMIPS:": "5400.00", + "L2 cache:": "48 MiB (48 instances)", + "L3 cache:": "66 MiB (2 instances)", + "Stepping:": "4", + "L1d cache:": "1.5 MiB (48 instances)", + "L1i cache:": "1.5 MiB (48 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "46 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", + "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", + "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Core(s) per socket:": "24", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", + "On-line CPU(s) list:": "0,1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41-49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89-95", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88", + "Vulnerability Meltdown:": "Mitigation; PTI", + "Vulnerability Retbleed:": "Mitigation; IBRS", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", + "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": null, + "num_constraints": null, + "num_outputs": null, + "num_private_inputs": null, + "num_public_inputs": null, + "num_wires": null, + "trusted_setup_file": "", + "witness_compiler": "c++" + }, + "rawHeaders": [ + "Content-Length", + "3856", + "Content-Type", + "application/json; charset=utf-8", + "Date", + "Mon, 15 Jan 2024 13:31:28 GMT", + "Referrer-Policy", + "same-origin", + "Server", + "gunicorn", + "Vary", + "Cookie, origin", + "X-Content-Type-Options", + "nosniff", + "X-Frame-Options", + "SAMEORIGIN", + "Connection", + "close" + ], + "responseIsBinary": false + }, + { + "scope": "https://sindri.app:443", + "method": "GET", + "path": "/api/v1/circuit/3e42bb6b-fb5c-438f-b93d-491b396b6f23/detail?include_verification_key=false", + "body": "", + "status": 200, + "response": { + "circuit_id": "3e42bb6b-fb5c-438f-b93d-491b396b6f23", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-15T13:31:26.518Z", + "proving_scheme": "groth16", + "status": "In Progress", + "compute_time": null, + "compute_times": { + "total": 0.00022626796271651983, + "queued": 0.906488 + }, + "file_sizes": { + "total": 529, + "total_gb": 5.29e-7, + "total_mb": 0.000529, + "code.tar.gz": 529 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tgz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf tsc_known_freq pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cat_l2 cdp_l3 invpcid_single intel_ppin cdp_l2 ssbd mba ibrs ibpb stibp ibrs_enhanced tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 avx2 smep bmi2 erms invpcid cqm rdt_a avx512f avx512dq rdseed adx smap avx512ifma clflushopt clwb intel_pt avx512cd sha_ni avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local split_lock_detect avx_vnni avx512_bf16 wbnoinvd dtherm ida arat pln pts hwp hwp_act_window hwp_epp hwp_pkg_req hfi avx512vbmi umip pku ospke waitpkg avx512_vbmi2 gfni vaes vpclmulqdq avx512_vnni avx512_bitalg tme avx512_vpopcntdq la57 rdpid bus_lock_detect cldemote movdiri movdir64b enqcmd fsrm md_clear serialize tsxldtrk pconfig arch_lbr ibt amx_bf16 avx512_fp16 amx_tile amx_int8 flush_l1d arch_capabilities", + "Model:": "143", + "CPU(s):": "128", + "BogoMIPS:": "5600.00", + "L2 cache:": "128 MiB (64 instances)", + "L3 cache:": "120 MiB (2 instances)", + "Stepping:": "7", + "L1d cache:": "3 MiB (64 instances)", + "L1i cache:": "2 MiB (64 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8462Y+", + "CPU max MHz:": "4100.0000", + "CPU min MHz:": "800.0000", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "52 bits physical, 57 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0-31,64-95", + "NUMA node1 CPU(s):": "32-63,96-127", + "Vulnerability Mds:": "Not affected", + "Core(s) per socket:": "32", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Not affected", + "On-line CPU(s) list:": "0,5-64,69-127", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "1-4,65-68", + "Vulnerability Meltdown:": "Not affected", + "Vulnerability Retbleed:": "Not affected", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; Enhanced IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS SW sequence", + "Vulnerability Itlb multihit:": "Not affected", + "Vulnerability Mmio stale data:": "Not affected", + "Vulnerability Tsx async abort:": "Not affected", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": null, + "num_constraints": null, + "num_outputs": null, + "num_private_inputs": null, + "num_public_inputs": null, + "num_wires": null, + "trusted_setup_file": "", + "witness_compiler": "c++" + }, + "rawHeaders": [ + "Content-Length", + "3640", + "Content-Type", + "application/json; charset=utf-8", + "Date", + "Mon, 15 Jan 2024 13:31:29 GMT", + "Referrer-Policy", + "same-origin", + "Server", + "gunicorn", + "Vary", + "Cookie, origin", + "X-Content-Type-Options", + "nosniff", + "X-Frame-Options", + "SAMEORIGIN", + "Connection", + "close" + ], + "responseIsBinary": false + }, + { + "scope": "https://sindri.app:443", + "method": "GET", + "path": "/api/v1/circuit/4e4d2d46-51d3-4194-b234-bdbb6a4f90fa/detail?include_verification_key=false", + "body": "", + "status": 200, + "response": { + "circuit_id": "4e4d2d46-51d3-4194-b234-bdbb6a4f90fa", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-15T13:31:24.753Z", + "proving_scheme": "groth16", + "status": "In Progress", + "compute_time": null, + "compute_times": { + "total": 0.0004055500030517578, + "queued": 1.196517 + }, + "file_sizes": { + "total": 497, + "total_gb": 4.97e-7, + "total_mb": 0.000497, + "code.tar.gz": 497 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", + "Model:": "85", + "CPU(s):": "96", + "BogoMIPS:": "5400.00", + "L2 cache:": "48 MiB (48 instances)", + "L3 cache:": "66 MiB (2 instances)", + "Stepping:": "4", + "L1d cache:": "1.5 MiB (48 instances)", + "L1i cache:": "1.5 MiB (48 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "46 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", + "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", + "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Core(s) per socket:": "24", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", + "On-line CPU(s) list:": "0,1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41-49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89-95", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88", + "Vulnerability Meltdown:": "Mitigation; PTI", + "Vulnerability Retbleed:": "Mitigation; IBRS", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", + "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": null, + "num_constraints": null, + "num_outputs": null, + "num_private_inputs": null, + "num_public_inputs": null, + "num_wires": null, + "trusted_setup_file": "", + "witness_compiler": "c++" + }, + "rawHeaders": [ + "Content-Length", + "3858", + "Content-Type", + "application/json; charset=utf-8", + "Date", + "Mon, 15 Jan 2024 13:31:29 GMT", + "Referrer-Policy", + "same-origin", + "Server", + "gunicorn", + "Vary", + "Cookie, origin", + "X-Content-Type-Options", + "nosniff", + "X-Frame-Options", + "SAMEORIGIN", + "Connection", + "close" + ], + "responseIsBinary": false + }, + { + "scope": "https://sindri.app:443", + "method": "GET", + "path": "/api/v1/circuit/4cb330c7-66c6-4cf5-a68f-c4ef96ac9f2f/detail?include_verification_key=false", + "body": "", + "status": 200, + "response": { + "circuit_id": "4cb330c7-66c6-4cf5-a68f-c4ef96ac9f2f", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-15T13:31:24.744Z", + "proving_scheme": "groth16", + "status": "In Progress", + "compute_time": null, + "compute_times": { + "total": 0.000584769994020462, + "queued": 1.213266 + }, + "file_sizes": { + "total": 499, + "total_gb": 4.99e-7, + "total_mb": 0.000499, + "code.tar.gz": 499 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", + "Model:": "85", + "CPU(s):": "96", + "BogoMIPS:": "5400.00", + "L2 cache:": "48 MiB (48 instances)", + "L3 cache:": "66 MiB (2 instances)", + "Stepping:": "4", + "L1d cache:": "1.5 MiB (48 instances)", + "L1i cache:": "1.5 MiB (48 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "46 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", + "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", + "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Core(s) per socket:": "24", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", + "On-line CPU(s) list:": "0,1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41-49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89-95", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88", + "Vulnerability Meltdown:": "Mitigation; PTI", + "Vulnerability Retbleed:": "Mitigation; IBRS", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", + "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": null, + "num_constraints": null, + "num_outputs": null, + "num_private_inputs": null, + "num_public_inputs": null, + "num_wires": null, + "trusted_setup_file": "", + "witness_compiler": "c++" + }, + "rawHeaders": [ + "Content-Length", + "3857", + "Content-Type", + "application/json; charset=utf-8", + "Date", + "Mon, 15 Jan 2024 13:31:29 GMT", + "Referrer-Policy", + "same-origin", + "Server", + "gunicorn", + "Vary", + "Cookie, origin", + "X-Content-Type-Options", + "nosniff", + "X-Frame-Options", + "SAMEORIGIN", + "Connection", + "close" + ], + "responseIsBinary": false + }, + { + "scope": "https://sindri.app:443", + "method": "GET", + "path": "/api/v1/circuit/1f9793dd-fc3a-40a7-8054-cef057abd541/detail?include_verification_key=false", + "body": "", + "status": 200, + "response": { + "circuit_id": "1f9793dd-fc3a-40a7-8054-cef057abd541", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-15T13:31:25.616Z", + "proving_scheme": "groth16", + "status": "In Progress", + "compute_time": null, + "compute_times": { + "total": 0.00030360370874404907, + "queued": 1.091233 + }, + "file_sizes": { + "total": 529, + "total_gb": 5.29e-7, + "total_mb": 0.000529, + "code.tar.gz": 529 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tgz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", + "Model:": "85", + "CPU(s):": "96", + "BogoMIPS:": "5400.00", + "L2 cache:": "48 MiB (48 instances)", + "L3 cache:": "66 MiB (2 instances)", + "Stepping:": "4", + "L1d cache:": "1.5 MiB (48 instances)", + "L1i cache:": "1.5 MiB (48 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "46 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", + "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", + "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Core(s) per socket:": "24", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", + "On-line CPU(s) list:": "0,1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41-49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89-95", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88", + "Vulnerability Meltdown:": "Mitigation; PTI", + "Vulnerability Retbleed:": "Mitigation; IBRS", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", + "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": null, + "num_constraints": null, + "num_outputs": null, + "num_private_inputs": null, + "num_public_inputs": null, + "num_wires": null, + "trusted_setup_file": "", + "witness_compiler": "c++" + }, + "rawHeaders": [ + "Content-Length", + "3856", + "Content-Type", + "application/json; charset=utf-8", + "Date", + "Mon, 15 Jan 2024 13:31:29 GMT", + "Referrer-Policy", + "same-origin", + "Server", + "gunicorn", + "Vary", + "Cookie, origin", + "X-Content-Type-Options", + "nosniff", + "X-Frame-Options", + "SAMEORIGIN", + "Connection", + "close" + ], + "responseIsBinary": false + }, + { + "scope": "https://sindri.app:443", + "method": "GET", + "path": "/api/v1/circuit/0c79ed16-2255-42d7-9d50-69b2a48e7a7e/detail?include_verification_key=false", + "body": "", + "status": 200, + "response": { + "circuit_id": "0c79ed16-2255-42d7-9d50-69b2a48e7a7e", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-15T13:31:25.692Z", + "proving_scheme": "groth16", + "status": "In Progress", + "compute_time": null, + "compute_times": { + "total": 0.00043579190969467163, + "queued": 1.082236 + }, + "file_sizes": { + "total": 529, + "total_gb": 5.29e-7, + "total_mb": 0.000529, + "code.tar.gz": 529 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tgz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", + "Model:": "85", + "CPU(s):": "96", + "BogoMIPS:": "5400.00", + "L2 cache:": "48 MiB (48 instances)", + "L3 cache:": "66 MiB (2 instances)", + "Stepping:": "4", + "L1d cache:": "1.5 MiB (48 instances)", + "L1i cache:": "1.5 MiB (48 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "46 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", + "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", + "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Core(s) per socket:": "24", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", + "On-line CPU(s) list:": "0,1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41-49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89-95", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88", + "Vulnerability Meltdown:": "Mitigation; PTI", + "Vulnerability Retbleed:": "Mitigation; IBRS", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", + "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": null, + "num_constraints": null, + "num_outputs": null, + "num_private_inputs": null, + "num_public_inputs": null, + "num_wires": null, + "trusted_setup_file": "", + "witness_compiler": "c++" + }, + "rawHeaders": [ + "Content-Length", + "3856", + "Content-Type", + "application/json; charset=utf-8", + "Date", + "Mon, 15 Jan 2024 13:31:30 GMT", + "Referrer-Policy", + "same-origin", + "Server", + "gunicorn", + "Vary", + "Cookie, origin", + "X-Content-Type-Options", + "nosniff", + "X-Frame-Options", + "SAMEORIGIN", + "Connection", + "close" + ], + "responseIsBinary": false + }, + { + "scope": "https://sindri.app:443", + "method": "GET", + "path": "/api/v1/circuit/08356d78-f494-441e-bfdb-b9f1c33d1c79/detail?include_verification_key=false", + "body": "", + "status": 200, + "response": { + "circuit_id": "08356d78-f494-441e-bfdb-b9f1c33d1c79", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-15T13:31:26.040Z", + "proving_scheme": "groth16", + "status": "In Progress", + "compute_time": null, + "compute_times": { + "total": 0.00047212280333042145, + "queued": 1.207576 + }, + "file_sizes": { + "total": 529, + "total_gb": 5.29e-7, + "total_mb": 0.000529, + "code.tar.gz": 529 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tgz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", + "Model:": "85", + "CPU(s):": "96", + "BogoMIPS:": "5400.00", + "L2 cache:": "48 MiB (48 instances)", + "L3 cache:": "66 MiB (2 instances)", + "Stepping:": "4", + "L1d cache:": "1.5 MiB (48 instances)", + "L1i cache:": "1.5 MiB (48 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "46 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", + "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", + "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Core(s) per socket:": "24", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", + "On-line CPU(s) list:": "0,1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41-49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89-95", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88", + "Vulnerability Meltdown:": "Mitigation; PTI", + "Vulnerability Retbleed:": "Mitigation; IBRS", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", + "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": null, + "num_constraints": null, + "num_outputs": null, + "num_private_inputs": null, + "num_public_inputs": null, + "num_wires": null, + "trusted_setup_file": "", + "witness_compiler": "c++" + }, + "rawHeaders": [ + "Content-Length", + "3856", + "Content-Type", + "application/json; charset=utf-8", + "Date", + "Mon, 15 Jan 2024 13:31:30 GMT", + "Referrer-Policy", + "same-origin", + "Server", + "gunicorn", + "Vary", + "Cookie, origin", + "X-Content-Type-Options", + "nosniff", + "X-Frame-Options", + "SAMEORIGIN", + "Connection", + "close" + ], + "responseIsBinary": false + }, + { + "scope": "https://sindri.app:443", + "method": "GET", + "path": "/api/v1/circuit/3e42bb6b-fb5c-438f-b93d-491b396b6f23/detail?include_verification_key=false", + "body": "", + "status": 200, + "response": { + "circuit_id": "3e42bb6b-fb5c-438f-b93d-491b396b6f23", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-15T13:31:26.518Z", + "proving_scheme": "groth16", + "status": "In Progress", + "compute_time": null, + "compute_times": { + "total": 0.00022626796271651983, + "queued": 0.906488 + }, + "file_sizes": { + "total": 529, + "total_gb": 5.29e-7, + "total_mb": 0.000529, + "code.tar.gz": 529 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tgz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf tsc_known_freq pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cat_l2 cdp_l3 invpcid_single intel_ppin cdp_l2 ssbd mba ibrs ibpb stibp ibrs_enhanced tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 avx2 smep bmi2 erms invpcid cqm rdt_a avx512f avx512dq rdseed adx smap avx512ifma clflushopt clwb intel_pt avx512cd sha_ni avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local split_lock_detect avx_vnni avx512_bf16 wbnoinvd dtherm ida arat pln pts hwp hwp_act_window hwp_epp hwp_pkg_req hfi avx512vbmi umip pku ospke waitpkg avx512_vbmi2 gfni vaes vpclmulqdq avx512_vnni avx512_bitalg tme avx512_vpopcntdq la57 rdpid bus_lock_detect cldemote movdiri movdir64b enqcmd fsrm md_clear serialize tsxldtrk pconfig arch_lbr ibt amx_bf16 avx512_fp16 amx_tile amx_int8 flush_l1d arch_capabilities", + "Model:": "143", + "CPU(s):": "128", + "BogoMIPS:": "5600.00", + "L2 cache:": "128 MiB (64 instances)", + "L3 cache:": "120 MiB (2 instances)", + "Stepping:": "7", + "L1d cache:": "3 MiB (64 instances)", + "L1i cache:": "2 MiB (64 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8462Y+", + "CPU max MHz:": "4100.0000", + "CPU min MHz:": "800.0000", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "52 bits physical, 57 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0-31,64-95", + "NUMA node1 CPU(s):": "32-63,96-127", + "Vulnerability Mds:": "Not affected", + "Core(s) per socket:": "32", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Not affected", + "On-line CPU(s) list:": "0,5-64,69-127", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "1-4,65-68", + "Vulnerability Meltdown:": "Not affected", + "Vulnerability Retbleed:": "Not affected", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; Enhanced IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS SW sequence", + "Vulnerability Itlb multihit:": "Not affected", + "Vulnerability Mmio stale data:": "Not affected", + "Vulnerability Tsx async abort:": "Not affected", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": null, + "num_constraints": null, + "num_outputs": null, + "num_private_inputs": null, + "num_public_inputs": null, + "num_wires": null, + "trusted_setup_file": "", + "witness_compiler": "c++" + }, + "rawHeaders": [ + "Content-Length", + "3640", + "Content-Type", + "application/json; charset=utf-8", + "Date", + "Mon, 15 Jan 2024 13:31:30 GMT", + "Referrer-Policy", + "same-origin", + "Server", + "gunicorn", + "Vary", + "Cookie, origin", + "X-Content-Type-Options", + "nosniff", + "X-Frame-Options", + "SAMEORIGIN", + "Connection", + "close" + ], + "responseIsBinary": false + }, + { + "scope": "https://sindri.app:443", + "method": "GET", + "path": "/api/v1/circuit/4e4d2d46-51d3-4194-b234-bdbb6a4f90fa/detail?include_verification_key=false", + "body": "", + "status": 200, + "response": { + "circuit_id": "4e4d2d46-51d3-4194-b234-bdbb6a4f90fa", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-15T13:31:24.753Z", + "proving_scheme": "groth16", + "status": "In Progress", + "compute_time": null, + "compute_times": { + "total": 0.0004055500030517578, + "queued": 1.196517 + }, + "file_sizes": { + "total": 497, + "total_gb": 4.97e-7, + "total_mb": 0.000497, + "code.tar.gz": 497 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", + "Model:": "85", + "CPU(s):": "96", + "BogoMIPS:": "5400.00", + "L2 cache:": "48 MiB (48 instances)", + "L3 cache:": "66 MiB (2 instances)", + "Stepping:": "4", + "L1d cache:": "1.5 MiB (48 instances)", + "L1i cache:": "1.5 MiB (48 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "46 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", + "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", + "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Core(s) per socket:": "24", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", + "On-line CPU(s) list:": "0,1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41-49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89-95", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88", + "Vulnerability Meltdown:": "Mitigation; PTI", + "Vulnerability Retbleed:": "Mitigation; IBRS", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", + "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": null, + "num_constraints": null, + "num_outputs": null, + "num_private_inputs": null, + "num_public_inputs": null, + "num_wires": null, + "trusted_setup_file": "", + "witness_compiler": "c++" + }, + "rawHeaders": [ + "Content-Length", + "3858", + "Content-Type", + "application/json; charset=utf-8", + "Date", + "Mon, 15 Jan 2024 13:31:30 GMT", + "Referrer-Policy", + "same-origin", + "Server", + "gunicorn", + "Vary", + "Cookie, origin", + "X-Content-Type-Options", + "nosniff", + "X-Frame-Options", + "SAMEORIGIN", + "Connection", + "close" + ], + "responseIsBinary": false + }, + { + "scope": "https://sindri.app:443", + "method": "GET", + "path": "/api/v1/circuit/4cb330c7-66c6-4cf5-a68f-c4ef96ac9f2f/detail?include_verification_key=false", + "body": "", + "status": 200, + "response": { + "circuit_id": "4cb330c7-66c6-4cf5-a68f-c4ef96ac9f2f", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-15T13:31:24.744Z", + "proving_scheme": "groth16", + "status": "In Progress", + "compute_time": null, + "compute_times": { + "total": 0.000584769994020462, + "queued": 1.213266 + }, + "file_sizes": { + "total": 499, + "total_gb": 4.99e-7, + "total_mb": 0.000499, + "code.tar.gz": 499 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", + "Model:": "85", + "CPU(s):": "96", + "BogoMIPS:": "5400.00", + "L2 cache:": "48 MiB (48 instances)", + "L3 cache:": "66 MiB (2 instances)", + "Stepping:": "4", + "L1d cache:": "1.5 MiB (48 instances)", + "L1i cache:": "1.5 MiB (48 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "46 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", + "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", + "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Core(s) per socket:": "24", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", + "On-line CPU(s) list:": "0,1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41-49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89-95", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88", + "Vulnerability Meltdown:": "Mitigation; PTI", + "Vulnerability Retbleed:": "Mitigation; IBRS", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", + "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": null, + "num_constraints": null, + "num_outputs": null, + "num_private_inputs": null, + "num_public_inputs": null, + "num_wires": null, + "trusted_setup_file": "", + "witness_compiler": "c++" + }, + "rawHeaders": [ + "Content-Length", + "3857", + "Content-Type", + "application/json; charset=utf-8", + "Date", + "Mon, 15 Jan 2024 13:31:30 GMT", + "Referrer-Policy", + "same-origin", + "Server", + "gunicorn", + "Vary", + "Cookie, origin", + "X-Content-Type-Options", + "nosniff", + "X-Frame-Options", + "SAMEORIGIN", + "Connection", + "close" + ], + "responseIsBinary": false + }, + { + "scope": "https://sindri.app:443", + "method": "GET", + "path": "/api/v1/circuit/1f9793dd-fc3a-40a7-8054-cef057abd541/detail?include_verification_key=false", + "body": "", + "status": 200, + "response": { + "circuit_id": "1f9793dd-fc3a-40a7-8054-cef057abd541", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-15T13:31:25.616Z", + "proving_scheme": "groth16", + "status": "In Progress", + "compute_time": null, + "compute_times": { + "total": 0.00030360370874404907, + "queued": 1.091233 + }, + "file_sizes": { + "total": 529, + "total_gb": 5.29e-7, + "total_mb": 0.000529, + "code.tar.gz": 529 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tgz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", + "Model:": "85", + "CPU(s):": "96", + "BogoMIPS:": "5400.00", + "L2 cache:": "48 MiB (48 instances)", + "L3 cache:": "66 MiB (2 instances)", + "Stepping:": "4", + "L1d cache:": "1.5 MiB (48 instances)", + "L1i cache:": "1.5 MiB (48 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "46 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", + "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", + "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Core(s) per socket:": "24", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", + "On-line CPU(s) list:": "0,1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41-49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89-95", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88", + "Vulnerability Meltdown:": "Mitigation; PTI", + "Vulnerability Retbleed:": "Mitigation; IBRS", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", + "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": null, + "num_constraints": null, + "num_outputs": null, + "num_private_inputs": null, + "num_public_inputs": null, + "num_wires": null, + "trusted_setup_file": "", + "witness_compiler": "c++" + }, + "rawHeaders": [ + "Content-Length", + "3856", + "Content-Type", + "application/json; charset=utf-8", + "Date", + "Mon, 15 Jan 2024 13:31:31 GMT", + "Referrer-Policy", + "same-origin", + "Server", + "gunicorn", + "Vary", + "Cookie, origin", + "X-Content-Type-Options", + "nosniff", + "X-Frame-Options", + "SAMEORIGIN", + "Connection", + "close" + ], + "responseIsBinary": false + }, + { + "scope": "https://sindri.app:443", + "method": "GET", + "path": "/api/v1/circuit/0c79ed16-2255-42d7-9d50-69b2a48e7a7e/detail?include_verification_key=false", + "body": "", + "status": 200, + "response": { + "circuit_id": "0c79ed16-2255-42d7-9d50-69b2a48e7a7e", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-15T13:31:25.692Z", + "proving_scheme": "groth16", + "status": "In Progress", + "compute_time": null, + "compute_times": { + "total": 0.00043579190969467163, + "queued": 1.082236 + }, + "file_sizes": { + "total": 529, + "total_gb": 5.29e-7, + "total_mb": 0.000529, + "code.tar.gz": 529 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tgz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", + "Model:": "85", + "CPU(s):": "96", + "BogoMIPS:": "5400.00", + "L2 cache:": "48 MiB (48 instances)", + "L3 cache:": "66 MiB (2 instances)", + "Stepping:": "4", + "L1d cache:": "1.5 MiB (48 instances)", + "L1i cache:": "1.5 MiB (48 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "46 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", + "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", + "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Core(s) per socket:": "24", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", + "On-line CPU(s) list:": "0,1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41-49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89-95", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88", + "Vulnerability Meltdown:": "Mitigation; PTI", + "Vulnerability Retbleed:": "Mitigation; IBRS", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", + "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": null, + "num_constraints": null, + "num_outputs": null, + "num_private_inputs": null, + "num_public_inputs": null, + "num_wires": null, + "trusted_setup_file": "", + "witness_compiler": "c++" + }, + "rawHeaders": [ + "Content-Length", + "3856", + "Content-Type", + "application/json; charset=utf-8", + "Date", + "Mon, 15 Jan 2024 13:31:31 GMT", + "Referrer-Policy", + "same-origin", + "Server", + "gunicorn", + "Vary", + "Cookie, origin", + "X-Content-Type-Options", + "nosniff", + "X-Frame-Options", + "SAMEORIGIN", + "Connection", + "close" + ], + "responseIsBinary": false + }, + { + "scope": "https://sindri.app:443", + "method": "GET", + "path": "/api/v1/circuit/08356d78-f494-441e-bfdb-b9f1c33d1c79/detail?include_verification_key=false", + "body": "", + "status": 200, + "response": { + "circuit_id": "08356d78-f494-441e-bfdb-b9f1c33d1c79", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-15T13:31:26.040Z", + "proving_scheme": "groth16", + "status": "In Progress", + "compute_time": null, + "compute_times": { + "total": 0.00047212280333042145, + "queued": 1.207576 + }, + "file_sizes": { + "total": 529, + "total_gb": 5.29e-7, + "total_mb": 0.000529, + "code.tar.gz": 529 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tgz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", + "Model:": "85", + "CPU(s):": "96", + "BogoMIPS:": "5400.00", + "L2 cache:": "48 MiB (48 instances)", + "L3 cache:": "66 MiB (2 instances)", + "Stepping:": "4", + "L1d cache:": "1.5 MiB (48 instances)", + "L1i cache:": "1.5 MiB (48 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "46 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", + "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", + "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Core(s) per socket:": "24", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", + "On-line CPU(s) list:": "0,1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41-49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89-95", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88", + "Vulnerability Meltdown:": "Mitigation; PTI", + "Vulnerability Retbleed:": "Mitigation; IBRS", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", + "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": null, + "num_constraints": null, + "num_outputs": null, + "num_private_inputs": null, + "num_public_inputs": null, + "num_wires": null, + "trusted_setup_file": "", + "witness_compiler": "c++" + }, + "rawHeaders": [ + "Content-Length", + "3856", + "Content-Type", + "application/json; charset=utf-8", + "Date", + "Mon, 15 Jan 2024 13:31:31 GMT", + "Referrer-Policy", + "same-origin", + "Server", + "gunicorn", + "Vary", + "Cookie, origin", + "X-Content-Type-Options", + "nosniff", + "X-Frame-Options", + "SAMEORIGIN", + "Connection", + "close" + ], + "responseIsBinary": false + }, + { + "scope": "https://sindri.app:443", + "method": "GET", + "path": "/api/v1/circuit/3e42bb6b-fb5c-438f-b93d-491b396b6f23/detail?include_verification_key=false", + "body": "", + "status": 200, + "response": { + "circuit_id": "3e42bb6b-fb5c-438f-b93d-491b396b6f23", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-15T13:31:26.518Z", + "proving_scheme": "groth16", + "status": "In Progress", + "compute_time": null, + "compute_times": { + "total": 0.00022626796271651983, + "queued": 0.906488 + }, + "file_sizes": { + "total": 529, + "total_gb": 5.29e-7, + "total_mb": 0.000529, + "code.tar.gz": 529 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tgz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf tsc_known_freq pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cat_l2 cdp_l3 invpcid_single intel_ppin cdp_l2 ssbd mba ibrs ibpb stibp ibrs_enhanced tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 avx2 smep bmi2 erms invpcid cqm rdt_a avx512f avx512dq rdseed adx smap avx512ifma clflushopt clwb intel_pt avx512cd sha_ni avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local split_lock_detect avx_vnni avx512_bf16 wbnoinvd dtherm ida arat pln pts hwp hwp_act_window hwp_epp hwp_pkg_req hfi avx512vbmi umip pku ospke waitpkg avx512_vbmi2 gfni vaes vpclmulqdq avx512_vnni avx512_bitalg tme avx512_vpopcntdq la57 rdpid bus_lock_detect cldemote movdiri movdir64b enqcmd fsrm md_clear serialize tsxldtrk pconfig arch_lbr ibt amx_bf16 avx512_fp16 amx_tile amx_int8 flush_l1d arch_capabilities", + "Model:": "143", + "CPU(s):": "128", + "BogoMIPS:": "5600.00", + "L2 cache:": "128 MiB (64 instances)", + "L3 cache:": "120 MiB (2 instances)", + "Stepping:": "7", + "L1d cache:": "3 MiB (64 instances)", + "L1i cache:": "2 MiB (64 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8462Y+", + "CPU max MHz:": "4100.0000", + "CPU min MHz:": "800.0000", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "52 bits physical, 57 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0-31,64-95", + "NUMA node1 CPU(s):": "32-63,96-127", + "Vulnerability Mds:": "Not affected", + "Core(s) per socket:": "32", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Not affected", + "On-line CPU(s) list:": "0,5-64,69-127", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "1-4,65-68", + "Vulnerability Meltdown:": "Not affected", + "Vulnerability Retbleed:": "Not affected", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; Enhanced IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS SW sequence", + "Vulnerability Itlb multihit:": "Not affected", + "Vulnerability Mmio stale data:": "Not affected", + "Vulnerability Tsx async abort:": "Not affected", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": null, + "num_constraints": null, + "num_outputs": null, + "num_private_inputs": null, + "num_public_inputs": null, + "num_wires": null, + "trusted_setup_file": "", + "witness_compiler": "c++" + }, + "rawHeaders": [ + "Content-Length", + "3640", + "Content-Type", + "application/json; charset=utf-8", + "Date", + "Mon, 15 Jan 2024 13:31:31 GMT", + "Referrer-Policy", + "same-origin", + "Server", + "gunicorn", + "Vary", + "Cookie, origin", + "X-Content-Type-Options", + "nosniff", + "X-Frame-Options", + "SAMEORIGIN", + "Connection", + "close" + ], + "responseIsBinary": false + }, + { + "scope": "https://sindri.app:443", + "method": "GET", + "path": "/api/v1/circuit/4e4d2d46-51d3-4194-b234-bdbb6a4f90fa/detail?include_verification_key=false", + "body": "", + "status": 200, + "response": { + "circuit_id": "4e4d2d46-51d3-4194-b234-bdbb6a4f90fa", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-15T13:31:24.753Z", + "proving_scheme": "groth16", + "status": "In Progress", + "compute_time": null, + "compute_times": { + "total": 0.0004055500030517578, + "queued": 1.196517 + }, + "file_sizes": { + "total": 497, + "total_gb": 4.97e-7, + "total_mb": 0.000497, + "code.tar.gz": 497 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", + "Model:": "85", + "CPU(s):": "96", + "BogoMIPS:": "5400.00", + "L2 cache:": "48 MiB (48 instances)", + "L3 cache:": "66 MiB (2 instances)", + "Stepping:": "4", + "L1d cache:": "1.5 MiB (48 instances)", + "L1i cache:": "1.5 MiB (48 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "46 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", + "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", + "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Core(s) per socket:": "24", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", + "On-line CPU(s) list:": "0,1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41-49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89-95", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88", + "Vulnerability Meltdown:": "Mitigation; PTI", + "Vulnerability Retbleed:": "Mitigation; IBRS", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", + "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": null, + "num_constraints": null, + "num_outputs": null, + "num_private_inputs": null, + "num_public_inputs": null, + "num_wires": null, + "trusted_setup_file": "", + "witness_compiler": "c++" + }, + "rawHeaders": [ + "Content-Length", + "3858", + "Content-Type", + "application/json; charset=utf-8", + "Date", + "Mon, 15 Jan 2024 13:31:31 GMT", + "Referrer-Policy", + "same-origin", + "Server", + "gunicorn", + "Vary", + "Cookie, origin", + "X-Content-Type-Options", + "nosniff", + "X-Frame-Options", + "SAMEORIGIN", + "Connection", + "close" + ], + "responseIsBinary": false + }, + { + "scope": "https://sindri.app:443", + "method": "GET", + "path": "/api/v1/circuit/4cb330c7-66c6-4cf5-a68f-c4ef96ac9f2f/detail?include_verification_key=false", + "body": "", + "status": 200, + "response": { + "circuit_id": "4cb330c7-66c6-4cf5-a68f-c4ef96ac9f2f", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-15T13:31:24.744Z", + "proving_scheme": "groth16", + "status": "In Progress", + "compute_time": null, + "compute_times": { + "total": 0.000584769994020462, + "queued": 1.213266 + }, + "file_sizes": { + "total": 499, + "total_gb": 4.99e-7, + "total_mb": 0.000499, + "code.tar.gz": 499 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", + "Model:": "85", + "CPU(s):": "96", + "BogoMIPS:": "5400.00", + "L2 cache:": "48 MiB (48 instances)", + "L3 cache:": "66 MiB (2 instances)", + "Stepping:": "4", + "L1d cache:": "1.5 MiB (48 instances)", + "L1i cache:": "1.5 MiB (48 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "46 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", + "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", + "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Core(s) per socket:": "24", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", + "On-line CPU(s) list:": "0,1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41-49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89-95", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88", + "Vulnerability Meltdown:": "Mitigation; PTI", + "Vulnerability Retbleed:": "Mitigation; IBRS", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", + "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": null, + "num_constraints": null, + "num_outputs": null, + "num_private_inputs": null, + "num_public_inputs": null, + "num_wires": null, + "trusted_setup_file": "", + "witness_compiler": "c++" + }, + "rawHeaders": [ + "Content-Length", + "3857", + "Content-Type", + "application/json; charset=utf-8", + "Date", + "Mon, 15 Jan 2024 13:31:31 GMT", + "Referrer-Policy", + "same-origin", + "Server", + "gunicorn", + "Vary", + "Cookie, origin", + "X-Content-Type-Options", + "nosniff", + "X-Frame-Options", + "SAMEORIGIN", + "Connection", + "close" + ], + "responseIsBinary": false + }, + { + "scope": "https://sindri.app:443", + "method": "GET", + "path": "/api/v1/circuit/1f9793dd-fc3a-40a7-8054-cef057abd541/detail?include_verification_key=false", + "body": "", + "status": 200, + "response": { + "circuit_id": "1f9793dd-fc3a-40a7-8054-cef057abd541", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-15T13:31:25.616Z", + "proving_scheme": "groth16", + "status": "In Progress", + "compute_time": null, + "compute_times": { + "total": 0.00030360370874404907, + "queued": 1.091233 + }, + "file_sizes": { + "total": 529, + "total_gb": 5.29e-7, + "total_mb": 0.000529, + "code.tar.gz": 529 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tgz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", + "Model:": "85", + "CPU(s):": "96", + "BogoMIPS:": "5400.00", + "L2 cache:": "48 MiB (48 instances)", + "L3 cache:": "66 MiB (2 instances)", + "Stepping:": "4", + "L1d cache:": "1.5 MiB (48 instances)", + "L1i cache:": "1.5 MiB (48 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "46 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", + "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", + "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Core(s) per socket:": "24", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", + "On-line CPU(s) list:": "0,1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41-49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89-95", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88", + "Vulnerability Meltdown:": "Mitigation; PTI", + "Vulnerability Retbleed:": "Mitigation; IBRS", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", + "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": null, + "num_constraints": null, + "num_outputs": null, + "num_private_inputs": null, + "num_public_inputs": null, + "num_wires": null, + "trusted_setup_file": "", + "witness_compiler": "c++" + }, + "rawHeaders": [ + "Content-Length", + "3856", + "Content-Type", + "application/json; charset=utf-8", + "Date", + "Mon, 15 Jan 2024 13:31:32 GMT", + "Referrer-Policy", + "same-origin", + "Server", + "gunicorn", + "Vary", + "Cookie, origin", + "X-Content-Type-Options", + "nosniff", + "X-Frame-Options", + "SAMEORIGIN", + "Connection", + "close" + ], + "responseIsBinary": false + }, + { + "scope": "https://sindri.app:443", + "method": "GET", + "path": "/api/v1/circuit/0c79ed16-2255-42d7-9d50-69b2a48e7a7e/detail?include_verification_key=false", + "body": "", + "status": 200, + "response": { + "circuit_id": "0c79ed16-2255-42d7-9d50-69b2a48e7a7e", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-15T13:31:25.692Z", + "proving_scheme": "groth16", + "status": "In Progress", + "compute_time": null, + "compute_times": { + "total": 0.00043579190969467163, + "queued": 1.082236 + }, + "file_sizes": { + "total": 529, + "total_gb": 5.29e-7, + "total_mb": 0.000529, + "code.tar.gz": 529 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tgz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", + "Model:": "85", + "CPU(s):": "96", + "BogoMIPS:": "5400.00", + "L2 cache:": "48 MiB (48 instances)", + "L3 cache:": "66 MiB (2 instances)", + "Stepping:": "4", + "L1d cache:": "1.5 MiB (48 instances)", + "L1i cache:": "1.5 MiB (48 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "46 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", + "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", + "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Core(s) per socket:": "24", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", + "On-line CPU(s) list:": "0,1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41-49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89-95", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88", + "Vulnerability Meltdown:": "Mitigation; PTI", + "Vulnerability Retbleed:": "Mitigation; IBRS", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", + "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": null, + "num_constraints": null, + "num_outputs": null, + "num_private_inputs": null, + "num_public_inputs": null, + "num_wires": null, + "trusted_setup_file": "", + "witness_compiler": "c++" + }, + "rawHeaders": [ + "Content-Length", + "3856", + "Content-Type", + "application/json; charset=utf-8", + "Date", + "Mon, 15 Jan 2024 13:31:32 GMT", + "Referrer-Policy", + "same-origin", + "Server", + "gunicorn", + "Vary", + "Cookie, origin", + "X-Content-Type-Options", + "nosniff", + "X-Frame-Options", + "SAMEORIGIN", + "Connection", + "close" + ], + "responseIsBinary": false + }, + { + "scope": "https://sindri.app:443", + "method": "GET", + "path": "/api/v1/circuit/08356d78-f494-441e-bfdb-b9f1c33d1c79/detail?include_verification_key=false", + "body": "", + "status": 200, + "response": { + "circuit_id": "08356d78-f494-441e-bfdb-b9f1c33d1c79", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-15T13:31:26.040Z", + "proving_scheme": "groth16", + "status": "In Progress", + "compute_time": null, + "compute_times": { + "total": 0.00047212280333042145, + "queued": 1.207576 + }, + "file_sizes": { + "total": 529, + "total_gb": 5.29e-7, + "total_mb": 0.000529, + "code.tar.gz": 529 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tgz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", + "Model:": "85", + "CPU(s):": "96", + "BogoMIPS:": "5400.00", + "L2 cache:": "48 MiB (48 instances)", + "L3 cache:": "66 MiB (2 instances)", + "Stepping:": "4", + "L1d cache:": "1.5 MiB (48 instances)", + "L1i cache:": "1.5 MiB (48 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "46 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", + "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", + "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Core(s) per socket:": "24", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", + "On-line CPU(s) list:": "0,1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41-49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89-95", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88", + "Vulnerability Meltdown:": "Mitigation; PTI", + "Vulnerability Retbleed:": "Mitigation; IBRS", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", + "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": null, + "num_constraints": null, + "num_outputs": null, + "num_private_inputs": null, + "num_public_inputs": null, + "num_wires": null, + "trusted_setup_file": "", + "witness_compiler": "c++" + }, + "rawHeaders": [ + "Content-Length", + "3856", + "Content-Type", + "application/json; charset=utf-8", + "Date", + "Mon, 15 Jan 2024 13:31:32 GMT", + "Referrer-Policy", + "same-origin", + "Server", + "gunicorn", + "Vary", + "Cookie, origin", + "X-Content-Type-Options", + "nosniff", + "X-Frame-Options", + "SAMEORIGIN", + "Connection", + "close" + ], + "responseIsBinary": false + }, + { + "scope": "https://sindri.app:443", + "method": "GET", + "path": "/api/v1/circuit/3e42bb6b-fb5c-438f-b93d-491b396b6f23/detail?include_verification_key=false", + "body": "", + "status": 200, + "response": { + "circuit_id": "3e42bb6b-fb5c-438f-b93d-491b396b6f23", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-15T13:31:26.518Z", + "proving_scheme": "groth16", + "status": "Ready", + "compute_time": "P0DT00H00M04.816702S", + "compute_times": { + "total": 4.8482058160007, + "queued": 0.906488, + "clean_up": 0.0006248310673981905, + "create_cpp": 0.02985287399496883, + "file_setup": 0.19871655595488846, + "compile_cpp": 2.975329626002349, + "create_r1cs": 0.005557317053899169, + "save_results": 0.007954819942824543, + "get_r1cs_info": 0.00032641494181007147, + "groth16_setup": 0.7642357499571517, + "export_verification_key": 0.8646354200318456, + "download_trusted_setup_file": 0.0007459390908479691 + }, + "file_sizes": { + "total": 225450, + "circuit": 213240, + "total_gb": 0.00022545, + "total_mb": 0.22545, + "circuit.dat": 6176, + "code.tar.gz": 529, + "circuit.zkey": 2580, + "verification_key": 2925 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tgz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf tsc_known_freq pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cat_l2 cdp_l3 invpcid_single intel_ppin cdp_l2 ssbd mba ibrs ibpb stibp ibrs_enhanced tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 avx2 smep bmi2 erms invpcid cqm rdt_a avx512f avx512dq rdseed adx smap avx512ifma clflushopt clwb intel_pt avx512cd sha_ni avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local split_lock_detect avx_vnni avx512_bf16 wbnoinvd dtherm ida arat pln pts hwp hwp_act_window hwp_epp hwp_pkg_req hfi avx512vbmi umip pku ospke waitpkg avx512_vbmi2 gfni vaes vpclmulqdq avx512_vnni avx512_bitalg tme avx512_vpopcntdq la57 rdpid bus_lock_detect cldemote movdiri movdir64b enqcmd fsrm md_clear serialize tsxldtrk pconfig arch_lbr ibt amx_bf16 avx512_fp16 amx_tile amx_int8 flush_l1d arch_capabilities", + "Model:": "143", + "CPU(s):": "128", + "BogoMIPS:": "5600.00", + "L2 cache:": "128 MiB (64 instances)", + "L3 cache:": "120 MiB (2 instances)", + "Stepping:": "7", + "L1d cache:": "3 MiB (64 instances)", + "L1i cache:": "2 MiB (64 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8462Y+", + "CPU max MHz:": "4100.0000", + "CPU min MHz:": "800.0000", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "52 bits physical, 57 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0-31,64-95", + "NUMA node1 CPU(s):": "32-63,96-127", + "Vulnerability Mds:": "Not affected", + "Core(s) per socket:": "32", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Not affected", + "On-line CPU(s) list:": "0,5-64,69-127", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "1-4,65-68", + "Vulnerability Meltdown:": "Not affected", + "Vulnerability Retbleed:": "Not affected", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; Enhanced IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS SW sequence", + "Vulnerability Itlb multihit:": "Not affected", + "Vulnerability Mmio stale data:": "Not affected", + "Vulnerability Tsx async abort:": "Not affected", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": 0, + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0, + "num_wires": 4, + "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", + "witness_compiler": "c++" + }, + "rawHeaders": [ + "Content-Length", + "4143", + "Content-Type", + "application/json; charset=utf-8", + "Date", + "Mon, 15 Jan 2024 13:31:33 GMT", + "Referrer-Policy", + "same-origin", + "Server", + "gunicorn", + "Vary", + "Cookie, origin", + "X-Content-Type-Options", + "nosniff", + "X-Frame-Options", + "SAMEORIGIN", + "Connection", + "close" + ], + "responseIsBinary": false + }, + { + "scope": "https://sindri.app:443", + "method": "GET", + "path": "/api/v1/circuit/4e4d2d46-51d3-4194-b234-bdbb6a4f90fa/detail?include_verification_key=false", + "body": "", + "status": 200, + "response": { + "circuit_id": "4e4d2d46-51d3-4194-b234-bdbb6a4f90fa", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-15T13:31:24.753Z", + "proving_scheme": "groth16", + "status": "In Progress", + "compute_time": null, + "compute_times": { + "total": 0.0004055500030517578, + "queued": 1.196517 + }, + "file_sizes": { + "total": 497, + "total_gb": 4.97e-7, + "total_mb": 0.000497, + "code.tar.gz": 497 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", + "Model:": "85", + "CPU(s):": "96", + "BogoMIPS:": "5400.00", + "L2 cache:": "48 MiB (48 instances)", + "L3 cache:": "66 MiB (2 instances)", + "Stepping:": "4", + "L1d cache:": "1.5 MiB (48 instances)", + "L1i cache:": "1.5 MiB (48 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "46 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", + "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", + "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Core(s) per socket:": "24", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", + "On-line CPU(s) list:": "0,1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41-49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89-95", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88", + "Vulnerability Meltdown:": "Mitigation; PTI", + "Vulnerability Retbleed:": "Mitigation; IBRS", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", + "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": null, + "num_constraints": null, + "num_outputs": null, + "num_private_inputs": null, + "num_public_inputs": null, + "num_wires": null, + "trusted_setup_file": "", + "witness_compiler": "c++" + }, + "rawHeaders": [ + "Content-Length", + "3858", + "Content-Type", + "application/json; charset=utf-8", + "Date", + "Mon, 15 Jan 2024 13:31:33 GMT", + "Referrer-Policy", + "same-origin", + "Server", + "gunicorn", + "Vary", + "Cookie, origin", + "X-Content-Type-Options", + "nosniff", + "X-Frame-Options", + "SAMEORIGIN", + "Connection", + "close" + ], + "responseIsBinary": false + }, + { + "scope": "https://sindri.app:443", + "method": "GET", + "path": "/api/v1/circuit/4cb330c7-66c6-4cf5-a68f-c4ef96ac9f2f/detail?include_verification_key=false", + "body": "", + "status": 200, + "response": { + "circuit_id": "4cb330c7-66c6-4cf5-a68f-c4ef96ac9f2f", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-15T13:31:24.744Z", + "proving_scheme": "groth16", + "status": "In Progress", + "compute_time": null, + "compute_times": { + "total": 0.000584769994020462, + "queued": 1.213266 + }, + "file_sizes": { + "total": 499, + "total_gb": 4.99e-7, + "total_mb": 0.000499, + "code.tar.gz": 499 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", + "Model:": "85", + "CPU(s):": "96", + "BogoMIPS:": "5400.00", + "L2 cache:": "48 MiB (48 instances)", + "L3 cache:": "66 MiB (2 instances)", + "Stepping:": "4", + "L1d cache:": "1.5 MiB (48 instances)", + "L1i cache:": "1.5 MiB (48 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "46 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", + "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", + "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Core(s) per socket:": "24", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", + "On-line CPU(s) list:": "0,1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41-49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89-95", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88", + "Vulnerability Meltdown:": "Mitigation; PTI", + "Vulnerability Retbleed:": "Mitigation; IBRS", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", + "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": null, + "num_constraints": null, + "num_outputs": null, + "num_private_inputs": null, + "num_public_inputs": null, + "num_wires": null, + "trusted_setup_file": "", + "witness_compiler": "c++" + }, + "rawHeaders": [ + "Content-Length", + "3857", + "Content-Type", + "application/json; charset=utf-8", + "Date", + "Mon, 15 Jan 2024 13:31:33 GMT", + "Referrer-Policy", + "same-origin", + "Server", + "gunicorn", + "Vary", + "Cookie, origin", + "X-Content-Type-Options", + "nosniff", + "X-Frame-Options", + "SAMEORIGIN", + "Connection", + "close" + ], + "responseIsBinary": false + }, + { + "scope": "https://sindri.app:443", + "method": "POST", + "path": "/api/v1/circuit/3e42bb6b-fb5c-438f-b93d-491b396b6f23/prove", + "body": "------WebKitFormBoundary0buQ8d6EhWcs9X9d\r\nContent-Disposition: form-data; name=\"proof_input\"\r\n\r\n{\"a\":\"5\",\"b\":\"4\"}\r\n------WebKitFormBoundary0buQ8d6EhWcs9X9d--\r\n\r\n", + "status": 201, + "response": { + "proof_id": "0c041b4a-cb98-4972-b274-18350f453414", + "circuit_name": "circom-multiplier2", + "circuit_id": "3e42bb6b-fb5c-438f-b93d-491b396b6f23", + "circuit_type": "circom", + "date_created": "2024-01-15T13:31:33.577Z", + "perform_verify": false, + "status": "Queued", + "compute_time": null, + "compute_times": null, + "file_sizes": null, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "proof_input": null, + "proof": null, + "prover_implementation": {}, + "public": null, + "worker_hardware": null, + "verification_key": null, + "error": null + }, + "rawHeaders": [ + "Content-Length", + "547", + "Content-Type", + "application/json; charset=utf-8", + "Date", + "Mon, 15 Jan 2024 13:31:33 GMT", + "Referrer-Policy", + "same-origin", + "Server", + "gunicorn", + "Vary", + "Cookie, origin", + "X-Content-Type-Options", + "nosniff", + "X-Frame-Options", + "SAMEORIGIN", + "Connection", + "close" + ], + "responseIsBinary": false + }, + { + "scope": "https://sindri.app:443", + "method": "GET", + "path": "/api/v1/circuit/1f9793dd-fc3a-40a7-8054-cef057abd541/detail?include_verification_key=false", + "body": "", + "status": 200, + "response": { + "circuit_id": "1f9793dd-fc3a-40a7-8054-cef057abd541", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-15T13:31:25.616Z", + "proving_scheme": "groth16", + "status": "In Progress", + "compute_time": null, + "compute_times": { + "total": 0.00030360370874404907, + "queued": 1.091233 + }, + "file_sizes": { + "total": 529, + "total_gb": 5.29e-7, + "total_mb": 0.000529, + "code.tar.gz": 529 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tgz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", + "Model:": "85", + "CPU(s):": "96", + "BogoMIPS:": "5400.00", + "L2 cache:": "48 MiB (48 instances)", + "L3 cache:": "66 MiB (2 instances)", + "Stepping:": "4", + "L1d cache:": "1.5 MiB (48 instances)", + "L1i cache:": "1.5 MiB (48 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "46 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", + "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", + "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Core(s) per socket:": "24", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", + "On-line CPU(s) list:": "0,1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41-49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89-95", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88", + "Vulnerability Meltdown:": "Mitigation; PTI", + "Vulnerability Retbleed:": "Mitigation; IBRS", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", + "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": null, + "num_constraints": null, + "num_outputs": null, + "num_private_inputs": null, + "num_public_inputs": null, + "num_wires": null, + "trusted_setup_file": "", + "witness_compiler": "c++" + }, + "rawHeaders": [ + "Content-Length", + "3856", + "Content-Type", + "application/json; charset=utf-8", + "Date", + "Mon, 15 Jan 2024 13:31:33 GMT", + "Referrer-Policy", + "same-origin", + "Server", + "gunicorn", + "Vary", + "Cookie, origin", + "X-Content-Type-Options", + "nosniff", + "X-Frame-Options", + "SAMEORIGIN", + "Connection", + "close" + ], + "responseIsBinary": false + }, + { + "scope": "https://sindri.app:443", + "method": "GET", + "path": "/api/v1/circuit/0c79ed16-2255-42d7-9d50-69b2a48e7a7e/detail?include_verification_key=false", + "body": "", + "status": 200, + "response": { + "circuit_id": "0c79ed16-2255-42d7-9d50-69b2a48e7a7e", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-15T13:31:25.692Z", + "proving_scheme": "groth16", + "status": "In Progress", + "compute_time": null, + "compute_times": { + "total": 0.00043579190969467163, + "queued": 1.082236 + }, + "file_sizes": { + "total": 529, + "total_gb": 5.29e-7, + "total_mb": 0.000529, + "code.tar.gz": 529 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tgz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", + "Model:": "85", + "CPU(s):": "96", + "BogoMIPS:": "5400.00", + "L2 cache:": "48 MiB (48 instances)", + "L3 cache:": "66 MiB (2 instances)", + "Stepping:": "4", + "L1d cache:": "1.5 MiB (48 instances)", + "L1i cache:": "1.5 MiB (48 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "46 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", + "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", + "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Core(s) per socket:": "24", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", + "On-line CPU(s) list:": "0,1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41-49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89-95", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88", + "Vulnerability Meltdown:": "Mitigation; PTI", + "Vulnerability Retbleed:": "Mitigation; IBRS", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", + "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": null, + "num_constraints": null, + "num_outputs": null, + "num_private_inputs": null, + "num_public_inputs": null, + "num_wires": null, + "trusted_setup_file": "", + "witness_compiler": "c++" + }, + "rawHeaders": [ + "Content-Length", + "3856", + "Content-Type", + "application/json; charset=utf-8", + "Date", + "Mon, 15 Jan 2024 13:31:34 GMT", + "Referrer-Policy", + "same-origin", + "Server", + "gunicorn", + "Vary", + "Cookie, origin", + "X-Content-Type-Options", + "nosniff", + "X-Frame-Options", + "SAMEORIGIN", + "Connection", + "close" + ], + "responseIsBinary": false + }, + { + "scope": "https://sindri.app:443", + "method": "GET", + "path": "/api/v1/circuit/08356d78-f494-441e-bfdb-b9f1c33d1c79/detail?include_verification_key=false", "body": "", "status": 200, "response": { - "$id": "https://sindri.app/api/v1/sindri-manifest-schema.json", - "$schema": "http://json-schema.org/draft-07/schema#", - "title": "SindriManifest", - "description": "Sindri Manifest file schema for `sindri.json` files.", - "anyOf": [ - { - "$ref": "#/definitions/CircomSindriManifest" + "circuit_id": "08356d78-f494-441e-bfdb-b9f1c33d1c79", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-15T13:31:26.040Z", + "proving_scheme": "groth16", + "status": "In Progress", + "compute_time": null, + "compute_times": { + "total": 0.00047212280333042145, + "queued": 1.207576 + }, + "file_sizes": { + "total": 529, + "total_gb": 5.29e-7, + "total_mb": 0.000529, + "code.tar.gz": 529 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tgz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", + "Model:": "85", + "CPU(s):": "96", + "BogoMIPS:": "5400.00", + "L2 cache:": "48 MiB (48 instances)", + "L3 cache:": "66 MiB (2 instances)", + "Stepping:": "4", + "L1d cache:": "1.5 MiB (48 instances)", + "L1i cache:": "1.5 MiB (48 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "46 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", + "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", + "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Core(s) per socket:": "24", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", + "On-line CPU(s) list:": "0,1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41-49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89-95", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88", + "Vulnerability Meltdown:": "Mitigation; PTI", + "Vulnerability Retbleed:": "Mitigation; IBRS", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", + "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" }, - { - "$ref": "#/definitions/GnarkSindriManifest" + "GPU": { + "gpus": [], + "num_gpus": 0 }, - { - "$ref": "#/definitions/Halo2AxiomV022SindriManifest" + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": null, + "num_constraints": null, + "num_outputs": null, + "num_private_inputs": null, + "num_public_inputs": null, + "num_wires": null, + "trusted_setup_file": "", + "witness_compiler": "c++" + }, + "rawHeaders": [ + "Content-Length", + "3856", + "Content-Type", + "application/json; charset=utf-8", + "Date", + "Mon, 15 Jan 2024 13:31:34 GMT", + "Referrer-Policy", + "same-origin", + "Server", + "gunicorn", + "Vary", + "Cookie, origin", + "X-Content-Type-Options", + "nosniff", + "X-Frame-Options", + "SAMEORIGIN", + "Connection", + "close" + ], + "responseIsBinary": false + }, + { + "scope": "https://sindri.app:443", + "method": "GET", + "path": "/api/v1/circuit/4e4d2d46-51d3-4194-b234-bdbb6a4f90fa/detail?include_verification_key=false", + "body": "", + "status": 200, + "response": { + "circuit_id": "4e4d2d46-51d3-4194-b234-bdbb6a4f90fa", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-15T13:31:24.753Z", + "proving_scheme": "groth16", + "status": "Ready", + "compute_time": "P0DT00H00M08.002611S", + "compute_times": { + "total": 8.10809656791389, + "queued": 1.196517, + "clean_up": 0.0010557789355516434, + "create_cpp": 0.04669773019850254, + "file_setup": 0.29523342847824097, + "compile_cpp": 4.564519450068474, + "create_r1cs": 0.018192801624536514, + "save_results": 0.005101308226585388, + "get_r1cs_info": 0.0006758365780115128, + "groth16_setup": 1.4404480885714293, + "export_verification_key": 1.733376519754529, + "download_trusted_setup_file": 0.0023900754749774933 + }, + "file_sizes": { + "total": 225418, + "circuit": 213240, + "total_gb": 0.000225418, + "total_mb": 0.225418, + "circuit.dat": 6176, + "code.tar.gz": 497, + "circuit.zkey": 2580, + "verification_key": 2925 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", + "Model:": "85", + "CPU(s):": "96", + "BogoMIPS:": "5400.00", + "L2 cache:": "48 MiB (48 instances)", + "L3 cache:": "66 MiB (2 instances)", + "Stepping:": "4", + "L1d cache:": "1.5 MiB (48 instances)", + "L1i cache:": "1.5 MiB (48 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "46 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", + "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", + "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Core(s) per socket:": "24", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", + "On-line CPU(s) list:": "0,1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41-49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89-95", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88", + "Vulnerability Meltdown:": "Mitigation; PTI", + "Vulnerability Retbleed:": "Mitigation; IBRS", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", + "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" }, - { - "$ref": "#/definitions/Halo2AxiomV030SindriManifest" + "GPU": { + "gpus": [], + "num_gpus": 0 }, - { - "$ref": "#/definitions/NoirSindriManifest" + "RAM": { + "virtual_memory_total_gb": 48 } - ], - "definitions": { - "CircomCurveOptions": { - "title": "CircomCurveOptions", - "description": "The supported Circom curves.", - "enum": [ - "bn254" - ], - "type": "string" + }, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": 0, + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0, + "num_wires": 4, + "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", + "witness_compiler": "c++" + }, + "rawHeaders": [ + "Content-Length", + "4363", + "Content-Type", + "application/json; charset=utf-8", + "Date", + "Mon, 15 Jan 2024 13:31:34 GMT", + "Referrer-Policy", + "same-origin", + "Server", + "gunicorn", + "Vary", + "Cookie, origin", + "X-Content-Type-Options", + "nosniff", + "X-Frame-Options", + "SAMEORIGIN", + "Connection", + "close" + ], + "responseIsBinary": false + }, + { + "scope": "https://sindri.app:443", + "method": "GET", + "path": "/api/v1/circuit/4cb330c7-66c6-4cf5-a68f-c4ef96ac9f2f/detail?include_verification_key=false", + "body": "", + "status": 200, + "response": { + "circuit_id": "4cb330c7-66c6-4cf5-a68f-c4ef96ac9f2f", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-15T13:31:24.744Z", + "proving_scheme": "groth16", + "status": "Ready", + "compute_time": "P0DT00H00M07.974658S", + "compute_times": { + "total": 8.07497458346188, + "queued": 1.213266, + "clean_up": 0.0014442000538110733, + "create_cpp": 0.04963418282568455, + "file_setup": 0.2647697776556015, + "compile_cpp": 4.544425489380956, + "create_r1cs": 0.009241640567779541, + "save_results": 0.0048146117478609085, + "get_r1cs_info": 0.00042194314301013947, + "groth16_setup": 1.4614581391215324, + "export_verification_key": 1.737057751044631, + "download_trusted_setup_file": 0.00112207792699337 + }, + "file_sizes": { + "total": 225420, + "circuit": 213240, + "total_gb": 0.00022542, + "total_mb": 0.22542, + "circuit.dat": 6176, + "code.tar.gz": 499, + "circuit.zkey": 2580, + "verification_key": 2925 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", + "Model:": "85", + "CPU(s):": "96", + "BogoMIPS:": "5400.00", + "L2 cache:": "48 MiB (48 instances)", + "L3 cache:": "66 MiB (2 instances)", + "Stepping:": "4", + "L1d cache:": "1.5 MiB (48 instances)", + "L1i cache:": "1.5 MiB (48 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "46 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", + "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", + "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Core(s) per socket:": "24", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", + "On-line CPU(s) list:": "0,1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41-49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89-95", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88", + "Vulnerability Meltdown:": "Mitigation; PTI", + "Vulnerability Retbleed:": "Mitigation; IBRS", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", + "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" }, - "CircomProvingSchemeOptions": { - "title": "CircomProvingSchemeOptions", - "description": "The supported Circom proving schemes.", - "enum": [ - "groth16" - ], - "type": "string" - }, - "CircomWitnessCompilerOptions": { - "title": "CircomWitnessCompilerOptions", - "description": "The supported Circom witness compilers.", - "enum": [ - "c++", - "wasm" - ], - "type": "string" - }, - "CircomSindriManifest": { - "title": "Sindri Manifest for Circom Circuits", - "description": "Sindri Manifest for Circom circuits.", - "type": "object", - "properties": { - "name": { - "title": "Circuit Name", - "description": "The circuit name used to uniquely identify the circuit within your organization. Similar to a GitHub project name or a Docker image name.", - "pattern": "^[-a-zA-Z0-9_]+$", - "error_messages": { - "regex": "`name` must be a valid slug." - }, - "type": "string" - }, - "circuitType": { - "title": "Circuit Type", - "description": "The (frontend) development framework that your circuit is written with.", - "enum": [ - "circom" - ], - "type": "string" - }, - "curve": { - "title": "Proving Curve", - "description": "The curve over which the proof is executed.", - "default": "bn254", - "allOf": [ - { - "$ref": "#/definitions/CircomCurveOptions" - } - ] - }, - "provingScheme": { - "description": "The backend proving scheme.", - "default": "groth16", - "allOf": [ - { - "$ref": "#/definitions/CircomProvingSchemeOptions" - } - ] - }, - "witnessCompiler": { - "description": "The circuit witness compiler.", - "default": "c++", - "allOf": [ - { - "$ref": "#/definitions/CircomWitnessCompilerOptions" - } - ] - }, - "$schema": { - "type": "string", - "title": "Sindri Manifest JSON Schema URL", - "description": "The URL pointing to a Sindri JSON Manifest schema definition.", - "examples": [ - "https://sindri.app/api/v1/sindri-manifest-schema.json" - ] - } - }, - "required": [ - "name", - "circuitType" - ], - "additionalProperties": false - }, - "GnarkCurveOptions": { - "title": "GnarkCurveOptions", - "description": "The supported Gnark curves.", - "enum": [ - "bls12-377", - "bls12-381", - "bls24-315", - "bn254", - "bw6-633", - "bw6-761" - ], - "type": "string" - }, - "GnarkVersionOptions": { - "title": "GnarkVersionOptions", - "description": "The supported Gnark framework versions.", - "enum": [ - "v0.8.1", - "v0.9.0" - ], - "type": "string" + "GPU": { + "gpus": [], + "num_gpus": 0 }, - "GnarkProvingSchemeOptions": { - "title": "GnarkProvingSchemeOptions", - "description": "The supported Gnark proving schemes.", - "enum": [ - "groth16" - ], - "type": "string" - }, - "GnarkSindriManifest": { - "title": "Sindri Manifest for Gnark Circuits", - "description": "Sindri Manifest for Gnark circuits.", - "type": "object", - "properties": { - "name": { - "title": "Circuit Name", - "description": "The circuit name used to uniquely identify the circuit within your organization. Similar to a GitHub project name or a Docker image name.", - "pattern": "^[-a-zA-Z0-9_]+$", - "error_messages": { - "regex": "`name` must be a valid slug." - }, - "type": "string" - }, - "circuitStructName": { - "title": "Circuit Struct Name", - "description": "The name of the Go struct which defines your circuit inputs.", - "pattern": "^[A-Z][A-Za-z0-9_]*$", - "error_messages": { - "regex": "`circuitStructName` must be a valid Go exported struct name." - }, - "type": "string" - }, - "circuitType": { - "title": "Circuit Type", - "description": "The (frontend) development framework that your circuit is written with.", - "enum": [ - "gnark" - ], - "type": "string" - }, - "curve": { - "title": "Proving Curve", - "description": "The curve over which the proof is executed.", - "default": "bn254", - "allOf": [ - { - "$ref": "#/definitions/GnarkCurveOptions" - } - ] - }, - "gnarkVersion": { - "description": "The version of the Gnark framework that your circuit uses.", - "allOf": [ - { - "$ref": "#/definitions/GnarkVersionOptions" - } - ] - }, - "packageName": { - "title": "Go Package Name", - "description": "The name of the Go package containing your circuit definition.", - "pattern": "^[a-z][a-z0-9]*$", - "error_messages": { - "regex": "`packageName` must be a valid Go package name." - }, - "type": "string" - }, - "provingScheme": { - "description": "The backend proving scheme.", - "default": "groth16", - "allOf": [ - { - "$ref": "#/definitions/GnarkProvingSchemeOptions" - } - ] - }, - "$schema": { - "type": "string", - "title": "Sindri Manifest JSON Schema URL", - "description": "The URL pointing to a Sindri JSON Manifest schema definition.", - "examples": [ - "https://sindri.app/api/v1/sindri-manifest-schema.json" - ] - } - }, - "required": [ - "name", - "circuitStructName", - "circuitType", - "gnarkVersion", - "packageName" - ], - "additionalProperties": false + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": 0, + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0, + "num_wires": 4, + "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", + "witness_compiler": "c++" + }, + "rawHeaders": [ + "Content-Length", + "4360", + "Content-Type", + "application/json; charset=utf-8", + "Date", + "Mon, 15 Jan 2024 13:31:34 GMT", + "Referrer-Policy", + "same-origin", + "Server", + "gunicorn", + "Vary", + "Cookie, origin", + "X-Content-Type-Options", + "nosniff", + "X-Frame-Options", + "SAMEORIGIN", + "Connection", + "close" + ], + "responseIsBinary": false + }, + { + "scope": "https://sindri.app:443", + "method": "GET", + "path": "/api/v1/circuit/1f9793dd-fc3a-40a7-8054-cef057abd541/detail?include_verification_key=false", + "body": "", + "status": 200, + "response": { + "circuit_id": "1f9793dd-fc3a-40a7-8054-cef057abd541", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-15T13:31:25.616Z", + "proving_scheme": "groth16", + "status": "Ready", + "compute_time": "P0DT00H00M08.171096S", + "compute_times": { + "total": 8.264494920149446, + "queued": 1.091233, + "clean_up": 0.0011752620339393616, + "create_cpp": 0.047388264909386635, + "file_setup": 0.2554698046296835, + "compile_cpp": 5.00205560401082, + "create_r1cs": 0.016951866447925568, + "save_results": 0.004460513591766357, + "get_r1cs_info": 0.0007659532129764557, + "groth16_setup": 1.5022341907024384, + "export_verification_key": 1.43130037561059, + "download_trusted_setup_file": 0.0023894812911748886 + }, + "file_sizes": { + "total": 225450, + "circuit": 213240, + "total_gb": 0.00022545, + "total_mb": 0.22545, + "circuit.dat": 6176, + "code.tar.gz": 529, + "circuit.zkey": 2580, + "verification_key": 2925 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tgz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", + "Model:": "85", + "CPU(s):": "96", + "BogoMIPS:": "5400.00", + "L2 cache:": "48 MiB (48 instances)", + "L3 cache:": "66 MiB (2 instances)", + "Stepping:": "4", + "L1d cache:": "1.5 MiB (48 instances)", + "L1i cache:": "1.5 MiB (48 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "46 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", + "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", + "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Core(s) per socket:": "24", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", + "On-line CPU(s) list:": "0,1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41-49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89-95", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88", + "Vulnerability Meltdown:": "Mitigation; PTI", + "Vulnerability Retbleed:": "Mitigation; IBRS", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", + "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" }, - "Halo2ProvingSchemeOptions": { - "title": "Halo2ProvingSchemeOptions", - "description": "The supported Halo2 proving schemes.", - "enum": [ - "shplonk" - ], - "type": "string" - }, - "Halo2AxiomV022SindriManifest": { - "title": "Sindri Manifest for Axiom v0.2.2 Halo2 Circuits", - "description": "Sindri Manifest for Axiom v0.2.2 circuits built with the Halo2 framework.", - "type": "object", - "properties": { - "name": { - "title": "Circuit Name", - "description": "The circuit name used to uniquely identify the circuit within your organization. Similar to a GitHub project name or a Docker image name.", - "pattern": "^[-a-zA-Z0-9_]+$", - "error_messages": { - "regex": "`name` must be a valid slug." - }, - "type": "string" - }, - "circuitType": { - "title": "Circuit Type", - "description": "The (frontend) development framework that your circuit is written with.", - "enum": [ - "halo2" - ], - "type": "string" - }, - "className": { - "title": "Circuit Class Name", - "description": "The path to your circuit struct definition. (*e.g.* `my-package::my_file::MyCircuitStruct`).", - "pattern": "^([A-Za-z_][A-Za-z0-9_]*::)+[A-Za-z_][A-Za-z0-9_]*$", - "error_messages": { - "regex": "`className` must be a valid and fully qualifed Rust path to a struct including the crate name." - }, - "type": "string" - }, - "degree": { - "title": "Degree", - "description": "Specifies that the circuit will have 2^degree rows.", - "type": "integer" - }, - "packageName": { - "title": "Rust Package Name", - "description": "The name of the Rust package containing your circuit.", - "pattern": "^[a-z0-9_]+(?:-[a-z0-9_]+)*$", - "error_messages": { - "regex": "`packageName` must be a valid Rust crate name." - }, - "type": "string" - }, - "provingScheme": { - "description": "The backend proving scheme.", - "default": "shplonk", - "allOf": [ - { - "$ref": "#/definitions/Halo2ProvingSchemeOptions" - } - ] - }, - "halo2Version": { - "title": "Halo2 Version", - "description": "The Halo2 frontend that your circuit is written with.", - "enum": [ - "axiom-v0.2.2" - ], - "type": "string" - }, - "$schema": { - "type": "string", - "title": "Sindri Manifest JSON Schema URL", - "description": "The URL pointing to a Sindri JSON Manifest schema definition.", - "examples": [ - "https://sindri.app/api/v1/sindri-manifest-schema.json" - ] - } - }, - "required": [ - "name", - "circuitType", - "className", - "degree", - "packageName", - "halo2Version" - ], - "additionalProperties": false - }, - "Halo2AxiomV030SindriManifest": { - "title": "Sindri Manifest for Axiom v0.3.0 Halo2 Circuits", - "description": "Sindri Manifest for Axiom v0.3.0 circuits built with the Halo2 framework.", - "type": "object", - "properties": { - "name": { - "title": "Circuit Name", - "description": "The circuit name used to uniquely identify the circuit within your organization. Similar to a GitHub project name or a Docker image name.", - "pattern": "^[-a-zA-Z0-9_]+$", - "error_messages": { - "regex": "`name` must be a valid slug." - }, - "type": "string" - }, - "circuitType": { - "title": "Circuit Type", - "description": "The (frontend) development framework that your circuit is written with.", - "enum": [ - "halo2" - ], - "type": "string" - }, - "className": { - "title": "Circuit Class Name", - "description": "The path to your circuit struct definition. (*e.g.* `my-package::my_file::MyCircuitStruct`).", - "pattern": "^([A-Za-z_][A-Za-z0-9_]*::)+[A-Za-z_][A-Za-z0-9_]*$", - "error_messages": { - "regex": "`className` must be a valid and fully qualifed Rust path to a struct including the crate name." - }, - "type": "string" - }, - "degree": { - "title": "Degree", - "description": "Specifies that the circuit will have 2^degree rows.", - "type": "integer" - }, - "packageName": { - "title": "Rust Package Name", - "description": "The name of the Rust package containing your circuit.", - "pattern": "^[a-z0-9_]+(?:-[a-z0-9_]+)*$", - "error_messages": { - "regex": "`packageName` must be a valid Rust crate name." - }, - "type": "string" - }, - "provingScheme": { - "description": "The backend proving scheme.", - "default": "shplonk", - "allOf": [ - { - "$ref": "#/definitions/Halo2ProvingSchemeOptions" - } - ] - }, - "halo2Version": { - "title": "Halo2 Version", - "description": "The Halo2 frontend that your circuit is written with.", - "enum": [ - "axiom-v0.3.0" - ], - "type": "string" - }, - "threadBuilder": { - "title": "Thread Builder", - "description": "The type of multi-threaded witness generator used. Choose GateThreadBuilder for simple circuits or RlcThreadBuilder for advanced applications that require sources of randomness.", - "enum": [ - "GateThreadBuilder", - "RlcThreadBuilder" - ], - "type": "string" - }, - "$schema": { - "type": "string", - "title": "Sindri Manifest JSON Schema URL", - "description": "The URL pointing to a Sindri JSON Manifest schema definition.", - "examples": [ - "https://sindri.app/api/v1/sindri-manifest-schema.json" - ] - } - }, - "required": [ - "name", - "circuitType", - "className", - "degree", - "packageName", - "halo2Version", - "threadBuilder" - ], - "additionalProperties": false + "GPU": { + "gpus": [], + "num_gpus": 0 }, - "NoirProvingSchemeOptions": { - "title": "NoirProvingSchemeOptions", - "description": "The supported Noir proving schemes.", - "enum": [ - "barretenberg" - ], - "type": "string" - }, - "NoirSindriManifest": { - "title": "Sindri Manifest for Noir Circuits", - "description": "Sindri Manifest for Noir circuits.", - "type": "object", - "properties": { - "name": { - "title": "Circuit Name", - "description": "The circuit name used to uniquely identify the circuit within your organization. Similar to a GitHub project name or a Docker image name.", - "pattern": "^[-a-zA-Z0-9_]+$", - "error_messages": { - "regex": "`name` must be a valid slug." - }, - "type": "string" - }, - "circuitType": { - "title": "Circuit Type", - "description": "The (frontend) development framework that your circuit is written with.", - "enum": [ - "noir" - ], - "type": "string" - }, - "provingScheme": { - "description": "The backend proving scheme.", - "default": "barretenberg", - "allOf": [ - { - "$ref": "#/definitions/NoirProvingSchemeOptions" - } - ] - }, - "$schema": { - "type": "string", - "title": "Sindri Manifest JSON Schema URL", - "description": "The URL pointing to a Sindri JSON Manifest schema definition.", - "examples": [ - "https://sindri.app/api/v1/sindri-manifest-schema.json" - ] - } - }, - "required": [ - "name", - "circuitType" - ], - "additionalProperties": false + "RAM": { + "virtual_memory_total_gb": 48 } - } + }, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": 0, + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0, + "num_wires": 4, + "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", + "witness_compiler": "c++" + }, + "rawHeaders": [ + "Content-Length", + "4357", + "Content-Type", + "application/json; charset=utf-8", + "Date", + "Mon, 15 Jan 2024 13:31:35 GMT", + "Referrer-Policy", + "same-origin", + "Server", + "gunicorn", + "Vary", + "Cookie, origin", + "X-Content-Type-Options", + "nosniff", + "X-Frame-Options", + "SAMEORIGIN", + "Connection", + "close" + ], + "responseIsBinary": false + }, + { + "scope": "https://sindri.app:443", + "method": "GET", + "path": "/api/v1/circuit/0c79ed16-2255-42d7-9d50-69b2a48e7a7e/detail?include_verification_key=false", + "body": "", + "status": 200, + "response": { + "circuit_id": "0c79ed16-2255-42d7-9d50-69b2a48e7a7e", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-15T13:31:25.692Z", + "proving_scheme": "groth16", + "status": "Ready", + "compute_time": "P0DT00H00M07.989370S", + "compute_times": { + "total": 8.078493990004063, + "queued": 1.082236, + "clean_up": 0.0013379640877246857, + "create_cpp": 0.046086084097623825, + "file_setup": 0.26662280783057213, + "compile_cpp": 4.741464577615261, + "create_r1cs": 0.010393906384706497, + "save_results": 0.004450704902410507, + "get_r1cs_info": 0.0003890320658683777, + "groth16_setup": 1.424798371270299, + "export_verification_key": 1.581564825028181, + "download_trusted_setup_file": 0.0009499248117208481 + }, + "file_sizes": { + "total": 225450, + "circuit": 213240, + "total_gb": 0.00022545, + "total_mb": 0.22545, + "circuit.dat": 6176, + "code.tar.gz": 529, + "circuit.zkey": 2580, + "verification_key": 2925 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tgz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", + "Model:": "85", + "CPU(s):": "96", + "BogoMIPS:": "5400.00", + "L2 cache:": "48 MiB (48 instances)", + "L3 cache:": "66 MiB (2 instances)", + "Stepping:": "4", + "L1d cache:": "1.5 MiB (48 instances)", + "L1i cache:": "1.5 MiB (48 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "46 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", + "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", + "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Core(s) per socket:": "24", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", + "On-line CPU(s) list:": "0,1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41-49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89-95", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88", + "Vulnerability Meltdown:": "Mitigation; PTI", + "Vulnerability Retbleed:": "Mitigation; IBRS", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", + "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" + }, + "GPU": { + "gpus": [], + "num_gpus": 0 + }, + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": 0, + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0, + "num_wires": 4, + "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", + "witness_compiler": "c++" }, "rawHeaders": [ "Content-Length", - "14963", + "4359", "Content-Type", - "application/schema+json", + "application/json; charset=utf-8", "Date", - "Sun, 07 Jan 2024 04:06:43 GMT", + "Mon, 15 Jan 2024 13:31:35 GMT", "Referrer-Policy", "same-origin", "Server", @@ -494,480 +35791,543 @@ { "scope": "https://sindri.app:443", "method": "GET", - "path": "/api/v1/sindri-manifest-schema.json", + "path": "/api/v1/circuit/08356d78-f494-441e-bfdb-b9f1c33d1c79/detail?include_verification_key=false", "body": "", "status": 200, "response": { - "$id": "https://sindri.app/api/v1/sindri-manifest-schema.json", - "$schema": "http://json-schema.org/draft-07/schema#", - "title": "SindriManifest", - "description": "Sindri Manifest file schema for `sindri.json` files.", - "anyOf": [ - { - "$ref": "#/definitions/CircomSindriManifest" + "circuit_id": "08356d78-f494-441e-bfdb-b9f1c33d1c79", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-15T13:31:26.040Z", + "proving_scheme": "groth16", + "status": "In Progress", + "compute_time": null, + "compute_times": { + "total": 0.00047212280333042145, + "queued": 1.207576 + }, + "file_sizes": { + "total": 529, + "total_gb": 5.29e-7, + "total_mb": 0.000529, + "code.tar.gz": 529 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tgz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", + "Model:": "85", + "CPU(s):": "96", + "BogoMIPS:": "5400.00", + "L2 cache:": "48 MiB (48 instances)", + "L3 cache:": "66 MiB (2 instances)", + "Stepping:": "4", + "L1d cache:": "1.5 MiB (48 instances)", + "L1i cache:": "1.5 MiB (48 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "46 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", + "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", + "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Core(s) per socket:": "24", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", + "On-line CPU(s) list:": "0,1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41-49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89-95", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88", + "Vulnerability Meltdown:": "Mitigation; PTI", + "Vulnerability Retbleed:": "Mitigation; IBRS", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", + "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" }, - { - "$ref": "#/definitions/GnarkSindriManifest" + "GPU": { + "gpus": [], + "num_gpus": 0 }, - { - "$ref": "#/definitions/Halo2AxiomV022SindriManifest" + "RAM": { + "virtual_memory_total_gb": 48 + } + }, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": null, + "num_constraints": null, + "num_outputs": null, + "num_private_inputs": null, + "num_public_inputs": null, + "num_wires": null, + "trusted_setup_file": "", + "witness_compiler": "c++" + }, + "rawHeaders": [ + "Content-Length", + "3856", + "Content-Type", + "application/json; charset=utf-8", + "Date", + "Mon, 15 Jan 2024 13:31:35 GMT", + "Referrer-Policy", + "same-origin", + "Server", + "gunicorn", + "Vary", + "Cookie, origin", + "X-Content-Type-Options", + "nosniff", + "X-Frame-Options", + "SAMEORIGIN", + "Connection", + "close" + ], + "responseIsBinary": false + }, + { + "scope": "https://sindri.app:443", + "method": "GET", + "path": "/api/v1/circuit/0c79ed16-2255-42d7-9d50-69b2a48e7a7e/detail?include_verification_key=true", + "body": "", + "status": 200, + "response": { + "circuit_id": "0c79ed16-2255-42d7-9d50-69b2a48e7a7e", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-15T13:31:25.692Z", + "proving_scheme": "groth16", + "status": "Ready", + "compute_time": "P0DT00H00M07.989370S", + "compute_times": { + "total": 8.078493990004063, + "queued": 1.082236, + "clean_up": 0.0013379640877246857, + "create_cpp": 0.046086084097623825, + "file_setup": 0.26662280783057213, + "compile_cpp": 4.741464577615261, + "create_r1cs": 0.010393906384706497, + "save_results": 0.004450704902410507, + "get_r1cs_info": 0.0003890320658683777, + "groth16_setup": 1.424798371270299, + "export_verification_key": 1.581564825028181, + "download_trusted_setup_file": 0.0009499248117208481 + }, + "file_sizes": { + "total": 225450, + "circuit": 213240, + "total_gb": 0.00022545, + "total_mb": 0.22545, + "circuit.dat": 6176, + "code.tar.gz": 529, + "circuit.zkey": 2580, + "verification_key": 2925 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tgz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", + "Model:": "85", + "CPU(s):": "96", + "BogoMIPS:": "5400.00", + "L2 cache:": "48 MiB (48 instances)", + "L3 cache:": "66 MiB (2 instances)", + "Stepping:": "4", + "L1d cache:": "1.5 MiB (48 instances)", + "L1i cache:": "1.5 MiB (48 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "46 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", + "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", + "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Core(s) per socket:": "24", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", + "On-line CPU(s) list:": "0,1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41-49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89-95", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88", + "Vulnerability Meltdown:": "Mitigation; PTI", + "Vulnerability Retbleed:": "Mitigation; IBRS", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", + "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" }, - { - "$ref": "#/definitions/Halo2AxiomV030SindriManifest" + "GPU": { + "gpus": [], + "num_gpus": 0 }, - { - "$ref": "#/definitions/NoirSindriManifest" + "RAM": { + "virtual_memory_total_gb": 48 } - ], - "definitions": { - "CircomCurveOptions": { - "title": "CircomCurveOptions", - "description": "The supported Circom curves.", - "enum": [ - "bn254" + }, + "verification_key": { + "protocol": "groth16", + "curve": "bn128", + "nPublic": 1, + "vk_alpha_1": [ + "20491192805390485299153009773594534940189261866228447918068658471970481763042", + "9383485363053290200918347156157836566562967994039712273449902621266178545958", + "1" + ], + "vk_beta_2": [ + [ + "6375614351688725206403948262868962793625744043794305715222011528459656738731", + "4252822878758300859123897981450591353533073413197771768651442665752259397132" ], - "type": "string" - }, - "CircomProvingSchemeOptions": { - "title": "CircomProvingSchemeOptions", - "description": "The supported Circom proving schemes.", - "enum": [ - "groth16" + [ + "10505242626370262277552901082094356697409835680220590971873171140371331206856", + "21847035105528745403288232691147584728191162732299865338377159692350059136679" ], - "type": "string" - }, - "CircomWitnessCompilerOptions": { - "title": "CircomWitnessCompilerOptions", - "description": "The supported Circom witness compilers.", - "enum": [ - "c++", - "wasm" + [ + "1", + "0" + ] + ], + "vk_gamma_2": [ + [ + "10857046999023057135944570762232829481370756359578518086990519993285655852781", + "11559732032986387107991004021392285783925812861821192530917403151452391805634" ], - "type": "string" - }, - "CircomSindriManifest": { - "title": "Sindri Manifest for Circom Circuits", - "description": "Sindri Manifest for Circom circuits.", - "type": "object", - "properties": { - "name": { - "title": "Circuit Name", - "description": "The circuit name used to uniquely identify the circuit within your organization. Similar to a GitHub project name or a Docker image name.", - "pattern": "^[-a-zA-Z0-9_]+$", - "error_messages": { - "regex": "`name` must be a valid slug." - }, - "type": "string" - }, - "circuitType": { - "title": "Circuit Type", - "description": "The (frontend) development framework that your circuit is written with.", - "enum": [ - "circom" - ], - "type": "string" - }, - "curve": { - "title": "Proving Curve", - "description": "The curve over which the proof is executed.", - "default": "bn254", - "allOf": [ - { - "$ref": "#/definitions/CircomCurveOptions" - } - ] - }, - "provingScheme": { - "description": "The backend proving scheme.", - "default": "groth16", - "allOf": [ - { - "$ref": "#/definitions/CircomProvingSchemeOptions" - } - ] - }, - "witnessCompiler": { - "description": "The circuit witness compiler.", - "default": "c++", - "allOf": [ - { - "$ref": "#/definitions/CircomWitnessCompilerOptions" - } - ] - }, - "$schema": { - "type": "string", - "title": "Sindri Manifest JSON Schema URL", - "description": "The URL pointing to a Sindri JSON Manifest schema definition.", - "examples": [ - "https://sindri.app/api/v1/sindri-manifest-schema.json" - ] - } - }, - "required": [ - "name", - "circuitType" + [ + "8495653923123431417604973247489272438418190587263600148770280649306958101930", + "4082367875863433681332203403145435568316851327593401208105741076214120093531" ], - "additionalProperties": false - }, - "GnarkCurveOptions": { - "title": "GnarkCurveOptions", - "description": "The supported Gnark curves.", - "enum": [ - "bls12-377", - "bls12-381", - "bls24-315", - "bn254", - "bw6-633", - "bw6-761" + [ + "1", + "0" + ] + ], + "vk_delta_2": [ + [ + "10857046999023057135944570762232829481370756359578518086990519993285655852781", + "11559732032986387107991004021392285783925812861821192530917403151452391805634" ], - "type": "string" - }, - "GnarkVersionOptions": { - "title": "GnarkVersionOptions", - "description": "The supported Gnark framework versions.", - "enum": [ - "v0.8.1", - "v0.9.0" + [ + "8495653923123431417604973247489272438418190587263600148770280649306958101930", + "4082367875863433681332203403145435568316851327593401208105741076214120093531" ], - "type": "string" - }, - "GnarkProvingSchemeOptions": { - "title": "GnarkProvingSchemeOptions", - "description": "The supported Gnark proving schemes.", - "enum": [ - "groth16" + [ + "1", + "0" + ] + ], + "vk_alphabeta_12": [ + [ + [ + "2029413683389138792403550203267699914886160938906632433982220835551125967885", + "21072700047562757817161031222997517981543347628379360635925549008442030252106" + ], + [ + "5940354580057074848093997050200682056184807770593307860589430076672439820312", + "12156638873931618554171829126792193045421052652279363021382169897324752428276" + ], + [ + "7898200236362823042373859371574133993780991612861777490112507062703164551277", + "7074218545237549455313236346927434013100842096812539264420499035217050630853" + ] ], - "type": "string" - }, - "GnarkSindriManifest": { - "title": "Sindri Manifest for Gnark Circuits", - "description": "Sindri Manifest for Gnark circuits.", - "type": "object", - "properties": { - "name": { - "title": "Circuit Name", - "description": "The circuit name used to uniquely identify the circuit within your organization. Similar to a GitHub project name or a Docker image name.", - "pattern": "^[-a-zA-Z0-9_]+$", - "error_messages": { - "regex": "`name` must be a valid slug." - }, - "type": "string" - }, - "circuitStructName": { - "title": "Circuit Struct Name", - "description": "The name of the Go struct which defines your circuit inputs.", - "pattern": "^[A-Z][A-Za-z0-9_]*$", - "error_messages": { - "regex": "`circuitStructName` must be a valid Go exported struct name." - }, - "type": "string" - }, - "circuitType": { - "title": "Circuit Type", - "description": "The (frontend) development framework that your circuit is written with.", - "enum": [ - "gnark" - ], - "type": "string" - }, - "curve": { - "title": "Proving Curve", - "description": "The curve over which the proof is executed.", - "default": "bn254", - "allOf": [ - { - "$ref": "#/definitions/GnarkCurveOptions" - } - ] - }, - "gnarkVersion": { - "description": "The version of the Gnark framework that your circuit uses.", - "allOf": [ - { - "$ref": "#/definitions/GnarkVersionOptions" - } - ] - }, - "packageName": { - "title": "Go Package Name", - "description": "The name of the Go package containing your circuit definition.", - "pattern": "^[a-z][a-z0-9]*$", - "error_messages": { - "regex": "`packageName` must be a valid Go package name." - }, - "type": "string" - }, - "provingScheme": { - "description": "The backend proving scheme.", - "default": "groth16", - "allOf": [ - { - "$ref": "#/definitions/GnarkProvingSchemeOptions" - } - ] - }, - "$schema": { - "type": "string", - "title": "Sindri Manifest JSON Schema URL", - "description": "The URL pointing to a Sindri JSON Manifest schema definition.", - "examples": [ - "https://sindri.app/api/v1/sindri-manifest-schema.json" - ] - } - }, - "required": [ - "name", - "circuitStructName", - "circuitType", - "gnarkVersion", - "packageName" + [ + [ + "7077479683546002997211712695946002074877511277312570035766170199895071832130", + "10093483419865920389913245021038182291233451549023025229112148274109565435465" + ], + [ + "4595479056700221319381530156280926371456704509942304414423590385166031118820", + "19831328484489333784475432780421641293929726139240675179672856274388269393268" + ], + [ + "11934129596455521040620786944827826205713621633706285934057045369193958244500", + "8037395052364110730298837004334506829870972346962140206007064471173334027475" + ] + ] + ], + "IC": [ + [ + "6819801395408938350212900248749732364821477541620635511814266536599629892365", + "9092252330033992554755034971584864587974280972948086568597554018278609861372", + "1" ], - "additionalProperties": false + [ + "17882351432929302592725330552407222299541667716607588771282887857165175611387", + "18907419617206324833977586007131055763810739835484972981819026406579664278293", + "1" + ] + ] + }, + "error": null, + "curve": "bn254", + "degree": 0, + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0, + "num_wires": 4, + "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", + "witness_compiler": "c++" + }, + "rawHeaders": [ + "Content-Length", + "6999", + "Content-Type", + "application/json; charset=utf-8", + "Date", + "Mon, 15 Jan 2024 13:31:35 GMT", + "Referrer-Policy", + "same-origin", + "Server", + "gunicorn", + "Vary", + "Cookie, origin", + "X-Content-Type-Options", + "nosniff", + "X-Frame-Options", + "SAMEORIGIN", + "Connection", + "close" + ], + "responseIsBinary": false + }, + { + "scope": "https://sindri.app:443", + "method": "GET", + "path": "/api/v1/circuit/08356d78-f494-441e-bfdb-b9f1c33d1c79/detail?include_verification_key=false", + "body": "", + "status": 200, + "response": { + "circuit_id": "08356d78-f494-441e-bfdb-b9f1c33d1c79", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-15T13:31:26.040Z", + "proving_scheme": "groth16", + "status": "Ready", + "compute_time": "P0DT00H00M08.255852S", + "compute_times": { + "total": 8.342214539647102, + "queued": 1.207576, + "clean_up": 0.001900574192404747, + "create_cpp": 0.048632413148880005, + "file_setup": 0.29853893630206585, + "compile_cpp": 4.7833232916891575, + "create_r1cs": 0.010217664763331413, + "save_results": 0.006458930671215057, + "get_r1cs_info": 0.00041519850492477417, + "groth16_setup": 1.685638464987278, + "export_verification_key": 1.505559166893363, + "download_trusted_setup_file": 0.001057775691151619 + }, + "file_sizes": { + "total": 225450, + "circuit": 213240, + "total_gb": 0.00022545, + "total_mb": 0.22545, + "circuit.dat": 6176, + "code.tar.gz": 529, + "circuit.zkey": 2580, + "verification_key": 2925 + }, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "uploaded_file_name": "circom-multiplier2.tgz", + "worker_hardware": { + "CPU": { + "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", + "Model:": "85", + "CPU(s):": "96", + "BogoMIPS:": "5400.00", + "L2 cache:": "48 MiB (48 instances)", + "L3 cache:": "66 MiB (2 instances)", + "Stepping:": "4", + "L1d cache:": "1.5 MiB (48 instances)", + "L1i cache:": "1.5 MiB (48 instances)", + "Socket(s):": "2", + "Vendor ID:": "GenuineIntel", + "Byte Order:": "Little Endian", + "CPU family:": "6", + "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", + "Architecture:": "x86_64", + "NUMA node(s):": "2", + "Address sizes:": "46 bits physical, 48 bits virtual", + "CPU op-mode(s):": "32-bit, 64-bit", + "Virtualization:": "VT-x", + "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", + "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", + "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Core(s) per socket:": "24", + "Thread(s) per core:": "2", + "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", + "On-line CPU(s) list:": "0,1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41-49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89-95", + "Vulnerability Srbds:": "Not affected", + "Off-line CPU(s) list:": "2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88", + "Vulnerability Meltdown:": "Mitigation; PTI", + "Vulnerability Retbleed:": "Mitigation; IBRS", + "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", + "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", + "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", + "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", + "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" }, - "Halo2ProvingSchemeOptions": { - "title": "Halo2ProvingSchemeOptions", - "description": "The supported Halo2 proving schemes.", - "enum": [ - "shplonk" - ], - "type": "string" - }, - "Halo2AxiomV022SindriManifest": { - "title": "Sindri Manifest for Axiom v0.2.2 Halo2 Circuits", - "description": "Sindri Manifest for Axiom v0.2.2 circuits built with the Halo2 framework.", - "type": "object", - "properties": { - "name": { - "title": "Circuit Name", - "description": "The circuit name used to uniquely identify the circuit within your organization. Similar to a GitHub project name or a Docker image name.", - "pattern": "^[-a-zA-Z0-9_]+$", - "error_messages": { - "regex": "`name` must be a valid slug." - }, - "type": "string" - }, - "circuitType": { - "title": "Circuit Type", - "description": "The (frontend) development framework that your circuit is written with.", - "enum": [ - "halo2" - ], - "type": "string" - }, - "className": { - "title": "Circuit Class Name", - "description": "The path to your circuit struct definition. (*e.g.* `my-package::my_file::MyCircuitStruct`).", - "pattern": "^([A-Za-z_][A-Za-z0-9_]*::)+[A-Za-z_][A-Za-z0-9_]*$", - "error_messages": { - "regex": "`className` must be a valid and fully qualifed Rust path to a struct including the crate name." - }, - "type": "string" - }, - "degree": { - "title": "Degree", - "description": "Specifies that the circuit will have 2^degree rows.", - "type": "integer" - }, - "packageName": { - "title": "Rust Package Name", - "description": "The name of the Rust package containing your circuit.", - "pattern": "^[a-z0-9_]+(?:-[a-z0-9_]+)*$", - "error_messages": { - "regex": "`packageName` must be a valid Rust crate name." - }, - "type": "string" - }, - "provingScheme": { - "description": "The backend proving scheme.", - "default": "shplonk", - "allOf": [ - { - "$ref": "#/definitions/Halo2ProvingSchemeOptions" - } - ] - }, - "halo2Version": { - "title": "Halo2 Version", - "description": "The Halo2 frontend that your circuit is written with.", - "enum": [ - "axiom-v0.2.2" - ], - "type": "string" - }, - "$schema": { - "type": "string", - "title": "Sindri Manifest JSON Schema URL", - "description": "The URL pointing to a Sindri JSON Manifest schema definition.", - "examples": [ - "https://sindri.app/api/v1/sindri-manifest-schema.json" - ] - } - }, - "required": [ - "name", - "circuitType", - "className", - "degree", - "packageName", - "halo2Version" - ], - "additionalProperties": false - }, - "Halo2AxiomV030SindriManifest": { - "title": "Sindri Manifest for Axiom v0.3.0 Halo2 Circuits", - "description": "Sindri Manifest for Axiom v0.3.0 circuits built with the Halo2 framework.", - "type": "object", - "properties": { - "name": { - "title": "Circuit Name", - "description": "The circuit name used to uniquely identify the circuit within your organization. Similar to a GitHub project name or a Docker image name.", - "pattern": "^[-a-zA-Z0-9_]+$", - "error_messages": { - "regex": "`name` must be a valid slug." - }, - "type": "string" - }, - "circuitType": { - "title": "Circuit Type", - "description": "The (frontend) development framework that your circuit is written with.", - "enum": [ - "halo2" - ], - "type": "string" - }, - "className": { - "title": "Circuit Class Name", - "description": "The path to your circuit struct definition. (*e.g.* `my-package::my_file::MyCircuitStruct`).", - "pattern": "^([A-Za-z_][A-Za-z0-9_]*::)+[A-Za-z_][A-Za-z0-9_]*$", - "error_messages": { - "regex": "`className` must be a valid and fully qualifed Rust path to a struct including the crate name." - }, - "type": "string" - }, - "degree": { - "title": "Degree", - "description": "Specifies that the circuit will have 2^degree rows.", - "type": "integer" - }, - "packageName": { - "title": "Rust Package Name", - "description": "The name of the Rust package containing your circuit.", - "pattern": "^[a-z0-9_]+(?:-[a-z0-9_]+)*$", - "error_messages": { - "regex": "`packageName` must be a valid Rust crate name." - }, - "type": "string" - }, - "provingScheme": { - "description": "The backend proving scheme.", - "default": "shplonk", - "allOf": [ - { - "$ref": "#/definitions/Halo2ProvingSchemeOptions" - } - ] - }, - "halo2Version": { - "title": "Halo2 Version", - "description": "The Halo2 frontend that your circuit is written with.", - "enum": [ - "axiom-v0.3.0" - ], - "type": "string" - }, - "threadBuilder": { - "title": "Thread Builder", - "description": "The type of multi-threaded witness generator used. Choose GateThreadBuilder for simple circuits or RlcThreadBuilder for advanced applications that require sources of randomness.", - "enum": [ - "GateThreadBuilder", - "RlcThreadBuilder" - ], - "type": "string" - }, - "$schema": { - "type": "string", - "title": "Sindri Manifest JSON Schema URL", - "description": "The URL pointing to a Sindri JSON Manifest schema definition.", - "examples": [ - "https://sindri.app/api/v1/sindri-manifest-schema.json" - ] - } - }, - "required": [ - "name", - "circuitType", - "className", - "degree", - "packageName", - "halo2Version", - "threadBuilder" - ], - "additionalProperties": false + "GPU": { + "gpus": [], + "num_gpus": 0 }, - "NoirProvingSchemeOptions": { - "title": "NoirProvingSchemeOptions", - "description": "The supported Noir proving schemes.", - "enum": [ - "barretenberg" - ], - "type": "string" - }, - "NoirSindriManifest": { - "title": "Sindri Manifest for Noir Circuits", - "description": "Sindri Manifest for Noir circuits.", - "type": "object", - "properties": { - "name": { - "title": "Circuit Name", - "description": "The circuit name used to uniquely identify the circuit within your organization. Similar to a GitHub project name or a Docker image name.", - "pattern": "^[-a-zA-Z0-9_]+$", - "error_messages": { - "regex": "`name` must be a valid slug." - }, - "type": "string" - }, - "circuitType": { - "title": "Circuit Type", - "description": "The (frontend) development framework that your circuit is written with.", - "enum": [ - "noir" - ], - "type": "string" - }, - "provingScheme": { - "description": "The backend proving scheme.", - "default": "barretenberg", - "allOf": [ - { - "$ref": "#/definitions/NoirProvingSchemeOptions" - } - ] - }, - "$schema": { - "type": "string", - "title": "Sindri Manifest JSON Schema URL", - "description": "The URL pointing to a Sindri JSON Manifest schema definition.", - "examples": [ - "https://sindri.app/api/v1/sindri-manifest-schema.json" - ] - } - }, - "required": [ - "name", - "circuitType" - ], - "additionalProperties": false + "RAM": { + "virtual_memory_total_gb": 48 } - } + }, + "verification_key": null, + "error": null, + "curve": "bn254", + "degree": 0, + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0, + "num_wires": 4, + "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", + "witness_compiler": "c++" + }, + "rawHeaders": [ + "Content-Length", + "4359", + "Content-Type", + "application/json; charset=utf-8", + "Date", + "Mon, 15 Jan 2024 13:31:37 GMT", + "Referrer-Policy", + "same-origin", + "Server", + "gunicorn", + "Vary", + "Cookie, origin", + "X-Content-Type-Options", + "nosniff", + "X-Frame-Options", + "SAMEORIGIN", + "Connection", + "close" + ], + "responseIsBinary": false + }, + { + "scope": "https://sindri.app:443", + "method": "POST", + "path": "/api/v1/circuit/08356d78-f494-441e-bfdb-b9f1c33d1c79/prove", + "body": "------WebKitFormBoundary0buQ8d6EhWcs9X9d\r\nContent-Disposition: form-data; name=\"proof_input\"\r\n\r\n{\"a\":\"5\",\"b\":\"4\"}\r\n------WebKitFormBoundary0buQ8d6EhWcs9X9d--\r\n\r\n", + "status": 201, + "response": { + "proof_id": "03724588-b4a1-43c0-850b-098764b7950d", + "circuit_name": "circom-multiplier2", + "circuit_id": "08356d78-f494-441e-bfdb-b9f1c33d1c79", + "circuit_type": "circom", + "date_created": "2024-01-15T13:31:37.482Z", + "perform_verify": false, + "status": "Queued", + "compute_time": null, + "compute_times": null, + "file_sizes": null, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "proof_input": null, + "proof": null, + "prover_implementation": {}, + "public": null, + "worker_hardware": null, + "verification_key": null, + "error": null }, "rawHeaders": [ "Content-Length", - "14963", + "547", + "Content-Type", + "application/json; charset=utf-8", + "Date", + "Mon, 15 Jan 2024 13:31:37 GMT", + "Referrer-Policy", + "same-origin", + "Server", + "gunicorn", + "Vary", + "Cookie, origin", + "X-Content-Type-Options", + "nosniff", + "X-Frame-Options", + "SAMEORIGIN", + "Connection", + "close" + ], + "responseIsBinary": false + }, + { + "scope": "https://sindri.app:443", + "method": "GET", + "path": "/api/v1/circuit/08356d78-f494-441e-bfdb-b9f1c33d1c79/proofs?include_proof_input=false&include_proof=false&include_public=false&include_verification_key=false", + "body": "", + "status": 200, + "response": [ + { + "proof_id": "03724588-b4a1-43c0-850b-098764b7950d", + "circuit_name": "circom-multiplier2", + "circuit_id": "08356d78-f494-441e-bfdb-b9f1c33d1c79", + "circuit_type": "circom", + "date_created": "2024-01-15T13:31:37.482Z", + "perform_verify": false, + "status": "Queued", + "compute_time": null, + "compute_times": null, + "file_sizes": null, + "metadata": { + "api_version": "v1.5.33", + "prover_backend_version": "v0.3.0" + }, + "proof_input": null, + "proof": null, + "prover_implementation": {}, + "public": null, + "worker_hardware": null, + "verification_key": null, + "error": null + } + ], + "rawHeaders": [ + "Content-Length", + "549", "Content-Type", - "application/schema+json", + "application/json; charset=utf-8", "Date", - "Sun, 07 Jan 2024 04:06:43 GMT", + "Mon, 15 Jan 2024 13:31:38 GMT", "Referrer-Policy", "same-origin", "Server", diff --git a/test/sdk.test.ts b/test/sdk.test.ts index 23ae041..c3dfc99 100644 --- a/test/sdk.test.ts +++ b/test/sdk.test.ts @@ -1,21 +1,141 @@ -import lib from "lib"; +import { File } from "buffer"; +import fs from "fs/promises"; +import path from "path"; +import MockDate from "mockdate"; + +import sindri from "lib"; + +import { dataDirectory } from "test/utils"; import { test, useNock } from "test/utils/useNock"; useNock(); -test("fetch Sindri manifest schema JSON", async (t) => { - const schema = await lib.getSindriManifestSchema(); - t.true(schema?.title?.includes("Sindri")); +// We need to lock the date because it's used as the modified time of tarballs. +test.before(() => { + MockDate.set("2024-01-01T00:00:00.000Z"); + sindri.pollingInterval = + (process.env.NOCK_BACK_MODE ?? "lockdown") === "lockdown" ? 0 : 1000; +}); +test.after.always(() => { + MockDate.reset(); +}); + +test("create circuit from directory", async (t) => { + const circuitDirectory = path.join(dataDirectory, "circom-multiplier2"); + await sindri.createCircuit(circuitDirectory, ["from-directory"]); + t.true(true); +}); + +test("create circuit from file array", async (t) => { + const circuitDirectory = path.join(dataDirectory, "circom-multiplier2"); + const fileNames = await fs.readdir(circuitDirectory); + const files = await Promise.all( + fileNames.map( + async (fileName) => + new File( + [await fs.readFile(path.join(circuitDirectory, fileName))], + fileName, + ), + ), + ); + await sindri.createCircuit(files, ["from-file-array"]); + t.true(true); +}); + +test("create circuit from tarball", async (t) => { + const circuitTarballDirectory = path.join( + dataDirectory, + "circom-multiplier2.tgz", + ); + await sindri.createCircuit(circuitTarballDirectory, ["from-tarball"]); + t.true(true); +}); + +test("get all circuit proofs", async (t) => { + // Compile a circuit. + const circuitTarballDirectory = path.join( + dataDirectory, + "circom-multiplier2.tgz", + ); + const circuit = await sindri.createCircuit(circuitTarballDirectory, [ + "from-tarball-for-all-circuit-proofs", + ]); + t.truthy(circuit?.circuit_id); + + // Create a proof. + const proof = await sindri.proveCircuit( + circuit.circuit_id, + '{"a":"5","b":"4"}', + ); + t.truthy(proof?.proof_id); + + // Get all circuit proofs. + const proofs = await sindri.getAllCircuitProofs(circuit.circuit_id); + t.truthy(proofs); + t.deepEqual(proofs.length, 1); + t.deepEqual(proofs[0]?.circuit_id, circuit?.circuit_id); + t.truthy(proofs[0]?.circuit_id); +}); + +test("get all circuits", async (t) => { + const circuits = await sindri.getAllCircuits(); + t.true(Array.isArray(circuits)); + t.true(circuits.length > 0); + t.truthy(circuits[0]?.circuit_id); +}); + +test("get circuit", async (t) => { + // Compile a circuit. + const circuitTarballDirectory = path.join( + dataDirectory, + "circom-multiplier2.tgz", + ); + const circuit = await sindri.createCircuit(circuitTarballDirectory, [ + "from-tarball-for-get-circuit", + ]); + t.truthy(circuit?.circuit_id); + + // Get the circuit. + const retrievedCircuit = await sindri.getCircuit(circuit.circuit_id); + t.truthy(retrievedCircuit); + t.deepEqual(circuit.circuit_id, retrievedCircuit.circuit_id); }); -test("fetch Sindri manifest schema JSON in parallel", async (t) => { - const schema = await lib.getSindriManifestSchema(); - t.true(schema?.title?.includes("Sindri")); +test("get all proofs", async (t) => { + const proofs = await sindri.getAllProofs(); + t.true(Array.isArray(proofs)); + t.true(proofs.length > 0); + t.truthy(proofs[0]?.proof_id); }); -test("import library", (t) => { - t.true( - lib.environment && ["development", "production"].includes(lib.environment), +test("get proof", async (t) => { + // Get a proof from the full selection. + const proofs = await sindri.getAllProofs(); + t.true(Array.isArray(proofs)); + t.true(proofs.length > 0); + t.truthy(proofs[0]); + const proof = proofs[0]; + + const retrievedProof = await sindri.getProof(proof!.proof_id); + t.truthy(retrievedProof?.proof_id); + t.deepEqual(proof?.proof_id, retrievedProof.proof_id); +}); + +test("prove circuit", async (t) => { + // Compile a circuit. + const circuitTarballDirectory = path.join( + dataDirectory, + "circom-multiplier2.tgz", + ); + const circuit = await sindri.createCircuit(circuitTarballDirectory, [ + "from-tarball-for-prove-circuit", + ]); + + // Create a proof. + const proof = await sindri.proveCircuit( + circuit.circuit_id, + '{"a":"5","b":"4"}', ); + t.truthy(proof?.proof_id); }); diff --git a/test/utils/index.ts b/test/utils/index.ts new file mode 100644 index 0000000..ea38eb7 --- /dev/null +++ b/test/utils/index.ts @@ -0,0 +1,7 @@ +import path from "path"; +import { fileURLToPath } from "url"; + +const __filename = fileURLToPath(import.meta.url); +const __dirname = path.dirname(__filename); + +export const dataDirectory = path.join(__dirname, "..", "data"); diff --git a/test/utils/matchFormPayloads.ts b/test/utils/matchFormPayloads.ts new file mode 100644 index 0000000..76f1b5b --- /dev/null +++ b/test/utils/matchFormPayloads.ts @@ -0,0 +1,130 @@ +import { isEqual } from "lodash"; +import makeSynchronous from "make-synchronous"; +import { type Definition as NockDefinition } from "nock"; +import * as multipart from "parse-multipart-data"; + +type MultipartInput = { + filename?: string; + name?: string; + type: string; + data: Buffer; +}; + +const boundaryRegex = /----WebKitFormBoundary................/; +const parseTarball = makeSynchronous( + async (buffer: Buffer): Promise<{ [path: string]: Buffer }> => + new Promise((resolve) => { + const files: { [path: string]: Buffer } = {}; + import("tar").then((tar) => { + const parseStream = new tar.Parse({ + // @ts-expect-error - The `ondone` callback is missing from the `ParseOptions` type. + ondone: () => { + resolve(files); + }, + onentry: (entry) => { + entry.on("data", (chunk) => { + files[entry.path] = Buffer.concat([ + files[entry.path] ?? Buffer.alloc(0), + chunk, + ]); + }); + }, + }); + parseStream.end(buffer); + }); + }), +); + +const partSorter = (a: MultipartInput, b: MultipartInput): number => { + // First sort by name with nameless entries last. + if (a.name != null || b.name != null) { + if (a.name == null) return 1; + if (b.name == null) return -1; + if (a.name < b.name) return -1; + if (a.name > b.name) return 1; + } + + // If names are equal, sort by data. + return a.data.compare(b.data); +}; + +export function matchFormPayloads(scope: NockDefinition) { + // @ts-expect-error - Types are wrong. + scope.filteringRequestBody = ( + body: string | null, + recordedBody: string | null, + ) => { + if (typeof body !== "string" || typeof recordedBody !== "string") { + return body; + } + + // Find the boundaries for the multipart form bodies. + const isText = boundaryRegex.test(body); + const bodyBuffer = Buffer.from(body, isText ? "utf-8" : "hex"); + const bodyText = bodyBuffer.toString("utf-8"); + const boundaryMatch = boundaryRegex.exec(bodyText); + if (!boundaryMatch) { + return body; + } + const boundary = boundaryMatch[0]; + const recordedBodyBuffer = Buffer.from( + recordedBody, + isText ? "utf-8" : "hex", + ); + const recordedBodyText = recordedBodyBuffer.toString("utf-8"); + const recordedBoundaryMatch = boundaryRegex.exec(recordedBodyText); + if (!recordedBoundaryMatch) { + return body; + } + const recordedBoundary = recordedBoundaryMatch[0]; + + // Parse the form data and get it into a normalized format by sorting the parts. + const parts: MultipartInput[] = multipart.parse(bodyBuffer, boundary); + parts.sort(partSorter); + const recordedParts: MultipartInput[] = multipart.parse( + recordedBodyBuffer, + recordedBoundary, + ); + recordedParts.sort(partSorter); + + // Check that the form inputs are equivalent. + if (parts.length !== recordedParts.length) { + return body; + } + for (let i = 0; i < parts.length; i++) { + const part = parts[i]; + const recordedPart = recordedParts[i]; + + // Check that all the metadata matches. + if ( + !part || + !recordedPart || + part.filename !== recordedPart.filename || + part.name !== recordedPart.name || + part.type !== recordedPart.type + ) { + return body; + } + + // Check that tarballs contain the same data. + if ( + part && + part.filename && + /\.(tar|tar\.gz|tgz)$/i.test(part.filename) + ) { + const tarball = parseTarball(part.data); + const recordedTarball = parseTarball(part.data); + if (!isEqual(tarball, recordedTarball)) { + return body; + } + } else { + if (part.data.compare(recordedPart.data) !== 0) { + return body; + } + } + } + + // If we made it this far, it's a match, so pretend the body is whatever we recorded. + return recordedBody; + }; +} diff --git a/test/utils/useNock.ts b/test/utils/useNock.ts index 0e510b7..1632e9c 100644 --- a/test/utils/useNock.ts +++ b/test/utils/useNock.ts @@ -4,6 +4,8 @@ import process from "process"; import testWithoutContext, { type ExecutionContext, type TestFn } from "ava"; import nock, { back as nockBack, type BackMode } from "nock"; +import { matchFormPayloads } from "test/utils/matchFormPayloads"; + // Add the context to the test function type. type Context = { nockDone: () => void; @@ -16,14 +18,15 @@ export const useNock = async () => { nockBack.fixtures = path.join(path.dirname(testPath), "fixtures"); const testFilenamePrefix = path.basename(testPath); const fixtureFilename = `${testFilenamePrefix}.json`; - console.log("fixtures:", nockBack.fixtures, fixtureFilename); test.before(async (t: ExecutionContext) => { // Start recording, and only allow connections to `sindri.app`. nock.disableNetConnect(); nock.enableNetConnect("sindri.app"); nockBack.setMode((process.env.NOCK_BACK_MODE ?? "lockdown") as BackMode); - const { nockDone } = await nockBack(fixtureFilename); + const { nockDone } = await nockBack(fixtureFilename, { + before: matchFormPayloads, + }); t.context.nockDone = nockDone; }); diff --git a/test/utils/usePage.ts b/test/utils/usePage.ts index 010bca6..4a19a4e 100644 --- a/test/utils/usePage.ts +++ b/test/utils/usePage.ts @@ -4,33 +4,63 @@ import process from "process"; import { fileURLToPath } from "url"; import testWithoutContext, { type ExecutionContext, type TestFn } from "ava"; +import getPort from "get-port"; import nock, { back as nockBack, type BackMode } from "nock"; -import useNockPuppeteerWithWrongTypes from "nock-puppeteer"; -import puppeteer, { - type Browser, - type Page, - type ResourceType, -} from "puppeteer"; - -// Fix the types on `useNockPuppeteer`. -const useNockPuppeteer = useNockPuppeteerWithWrongTypes as ( - page: Page, - allowedHosts: string[], - supportedResourceTypes?: ResourceType[], -) => Promise; +import { Proxy } from "http-mitm-proxy"; +import puppeteer, { type Browser, type Page } from "puppeteer"; + +import sindriLibrary from "lib"; +import { matchFormPayloads } from "test/utils/matchFormPayloads"; + +// The `sindri` library is injected in `withPage.ts`, but this tells TypeScript what the type is. +type SindriLibrary = typeof sindriLibrary; +declare const sindri: SindriLibrary; // Add the context to the test function type. type Context = { browser: Browser; nockDone: () => void; page: Page; + proxy: Proxy; }; export const test = testWithoutContext as TestFn; const __filename = fileURLToPath(import.meta.url); const __dirname = path.dirname(__filename); -export const usePage = async () => { +function createProxy(): Proxy { + const proxy = new Proxy(); + proxy.use(Proxy.wildcard); + + // The library uses `console.debug()` a lot and it's noisy. + console.debug = () => {}; + + // Squash the sslv3 alerts from Chrome by monkey patching the error handler. + const originalOnError = proxy._onError; + proxy._onError = function (kind, ctx, err) { + if ( + kind === "HTTPS_CLIENT_ERROR" && + // @ts-expect-error - The error in question will have `code` but this isn't typed. + err.code === "ERR_SSL_SSLV3_ALERT_CERTIFICATE_UNKNOWN" + ) { + return; + } + return originalOnError.call(this, kind, ctx, err); + }; + + proxy.onResponse((ctx, callback) => { + // Removes the Content-Length header because there's a mismatch. + ctx.responseContentPotentiallyModified = true; + callback(); + }); + return proxy; +} + +export const usePage = async ({ + mockDate, +}: { + mockDate: undefined | (() => void); +}) => { // Prepare the nock fixture paths. const testPath = test.meta.file.replace(/^file:/, ""); nockBack.fixtures = path.join(path.dirname(testPath), "fixtures"); @@ -52,16 +82,36 @@ export const usePage = async () => { } test.before(async (t: ExecutionContext) => { - // Launch the Puppeteer browser without any nock interference. + // Disable nock interference until after we have the browser launched and connected. nockBack.setMode("wild"); nock.enableNetConnect(); - t.context.browser = await puppeteer.launch({ headless: "new" }); + + // Start a proxy server and launch a browser with Puppeteer that uses it. + t.context.proxy = createProxy(); + const proxyPort = await getPort(); + await new Promise((resolve, reject) => + t.context.proxy.listen({ port: proxyPort }, (error) => + error ? reject(error) : resolve(), + ), + ); + t.context.browser = await puppeteer.launch({ + headless: "new", + // Ignore certificate errors because the proxy uses a self-signed certificate. + ignoreHTTPSErrors: true, + args: [ + `--proxy-server=http://localhost:${proxyPort}`, + // Disable CORS because they don't play back correctly with Nock and the proxy. + "--disable-web-security", + ], + }); // Start recording, and only allow connections to `sindri.app`. nock.disableNetConnect(); nock.enableNetConnect("sindri.app"); nockBack.setMode((process.env.NOCK_BACK_MODE ?? "lockdown") as BackMode); - const { nockDone } = await nockBack(fixtureFilename); + const { nockDone } = await nockBack(fixtureFilename, { + before: matchFormPayloads, + }); t.context.nockDone = nockDone; }); @@ -71,7 +121,51 @@ export const usePage = async () => { await t.context.page.addScriptTag({ path: sindriScriptPath, }); - useNockPuppeteer(t.context.page, ["https://sindri.app"]); + await t.context.page.evaluate( + (apiKey, baseUrl, pollingInterval) => { + sindri.authorize({ apiKey, baseUrl }); + sindri.pollingInterval = pollingInterval; + }, + sindriLibrary.apiKey ?? undefined, + sindriLibrary.baseUrl, + (process.env.NOCK_BACK_MODE ?? "lockdown") === "lockdown" ? 0 : 1000, + ); + if (mockDate) { + const mockDatePath = path.join( + __dirname, + "..", + "..", + "node_modules", + "mockdate", + "lib", + "mockdate.js", + ); + await t.context.page.addScriptTag({ + path: mockDatePath, + }); + await t.context.page.evaluate(mockDate); + } + + // Attach some more verbose logging. + t.context.page + .on("console", (message) => + console.log( + `BROWSER - ${message.type().toUpperCase()} - ${message.text()}`, + ), + ) + .on("pageerror", ({ message }) => + console.log(`BOWSER ERROR - ${message}`), + ) + .on("requestfailed", (request) => { + const requestFailure = request?.failure(); + if (requestFailure) { + console.log( + `BROWSER REQUEST FAILED - ${ + requestFailure.errorText + } ${request.url()}`, + ); + } + }); }); test.afterEach.always(async (t: ExecutionContext) => { @@ -82,16 +176,25 @@ export const usePage = async () => { }); test.after.always(async (t: ExecutionContext) => { - // Close the browser after all tests. - if (t.context.browser) { - await t.context.browser.close(); - } - // Stop recording and re-enable all network connections. if (t.context.nockDone) { t.context.nockDone(); } nock.enableNetConnect(); nockBack.setMode("wild"); + + // Close the browser after all tests. + if (t.context.browser) { + await t.context.browser.close(); + } + + // Shut down the proxy server. + if (t.context.proxy) { + t.context.proxy.close(); + } + + // Ugly... but the process often hangs otherwise. This is only for the child process, AVA still + // knows whether the tests passed or failed. It prints out an ugly error, but it does work. + process.exit(0); }); }; diff --git a/tsconfig.json b/tsconfig.json index 7cca788..62f8890 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -6,6 +6,7 @@ "lib": ["dom"], "module": "ESNext", "moduleResolution": "node", + "noUncheckedIndexedAccess": true, "paths": { "test/*": ["../test/*"] }, diff --git a/tsup.config.ts b/tsup.config.ts index 0d9ea4d..c2bfd33 100644 --- a/tsup.config.ts +++ b/tsup.config.ts @@ -27,6 +27,7 @@ export default defineConfig([ dts: true, entry: ["src/lib/index.ts"], env: { + BROWSER_BUILD: "true", NODE_ENV: process.env.NODE_ENV, }, format: ["cjs", "esm"], @@ -36,6 +37,7 @@ export default defineConfig([ sourcemap: true, splitting: true, target: "esnext", + treeshake: "smallest", // Produce an IIFE bundle for use with a