Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

CompilerGym v0.2.3 #632

Merged
merged 9 commits into from
Mar 18, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -94,4 +94,4 @@ jobs:
uses: ./.github/actions/install-runtime-dependencies

- name: Run the examples tests
run: make examples-test
run: make -C examples test
4 changes: 2 additions & 2 deletions CITATION.cff
Original file line number Diff line number Diff line change
Expand Up @@ -31,8 +31,8 @@ authors:
- family-names: "Leather"
given-names: "Hugh"
title: "CompilerGym"
version: 0.2.2
date-released: 2022-01-19
version: 0.2.3
date-released: 2022-03-18
url: "https://github.com/facebookresearch/CompilerGym"
preferred-citation:
type: article
Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.2.2
0.2.3
27 changes: 25 additions & 2 deletions docs/source/index.rst
Original file line number Diff line number Diff line change
@@ -1,7 +1,30 @@
.. image:: /_static/img/logo.png

`CompilerGym <https://github.com/facebookresearch/CompilerGym>`_ is a toolkit
for applying reinforcement learning to compiler optimizations.
|pypi| |downloads| |stars| |forks|

.. |pypi| image:: https://badge.fury.io/py/compiler-gym.svg
:target: https://pypi.org/project/compiler-gym/
:height: 20px

.. |downloads| image:: https://pepy.tech/badge/compiler-gym
:target: https://pypi.org/project/compiler-gym/
:height: 20px

.. |stars| image:: https://img.shields.io/github/stars/facebookresearch/CompilerGym?style=social
:target: https://github.com/facebookresearch/CompilerGym
:height: 20px

.. |forks| image:: https://img.shields.io/github/forks/facebookresearch/CompilerGym?style=social
:target: https://github.com/facebookresearch/CompilerGym
:height: 20px


`CompilerGym <https://github.com/facebookresearch/CompilerGym>`_ is a library
of easy to use and performant reinforcement learning environments for compiler
tasks. It allows ML researchers to interact with important compiler optimization
problems in a language and vocabulary with which they are comfortable, and
provides a toolkit for systems developers to expose new compiler tasks for ML
research. We aim to act as a catalyst for making compilers faster using ML.

.. toctree::
:maxdepth: 1
Expand Down
2 changes: 1 addition & 1 deletion www/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
compiler_gym==0.2.2
compiler_gym==0.2.3
Flask==2.0.1
Flask-Cors==3.0.10