{ "cells": [ { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [ "using Revise; using MetagraphOptimization; using BenchmarkTools; using ProfileView\n", "using Base.Threads\n", "nthreads()" ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [ "model = ABCModel()\n", "process_str = \"AB->ABBBBB\"\n", "process = parse_process(process_str, model)\n", "graph = parse_dag(\"../input/$process_str.txt\", model)\n", "print(graph)" ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [ "@ProfileView.profview optimize_to_fixpoint!(ReductionOptimizer(), graph)" ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [ "@ProfileView.profview comp_func = get_compute_function(graph, process, get_machine_info())" ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [] } ], "metadata": { "kernelspec": { "display_name": "Julia 1.9.4", "language": "julia", "name": "julia-1.9" }, "language_info": { "file_extension": ".jl", "mimetype": "application/julia", "name": "julia", "version": "1.9.4" }, "orig_nbformat": 4 }, "nbformat": 4, "nbformat_minor": 2 }