Skip to content

Nesterov Accelerated Gradient #63

Nesterov Accelerated Gradient

Nesterov Accelerated Gradient #63

Workflow file for this run

name: Windows
on:
push:
branches: ["master"]
pull_request:
branches: ["master"]
jobs:
build:
name: ${{ matrix.conf.name }} - Build
runs-on: ${{ matrix.conf.os }}
strategy:
fail-fast: false
matrix:
conf:
- { name: "Windows g++", os: windows-latest, compiler: "g++" }
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Build library
env:
CXX: ${{matrix.conf.compiler}}
run: |
g++ include/ShkyeraGrad.hpp --std=c++17
- name: Build examples
env:
CXX: ${{matrix.conf.compiler}}
run: |
g++ -o out examples/scalars.cpp -O3 --std=c++17
g++ -o out examples/xor_classification.cpp -O3 --std=c++17
g++ -o out examples/xor_regression.cpp -O3 --std=c++17