Skip to content

Latest commit

 

History

History

backend

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 
 
 

Backend

This directory contains (sample) backend implementation.

Any backend implementing a computation method (symbolic or not) should fulfil the ComputationBackend interface:

type ComputationBackend interface {
	onnx.Backend
	Run() error
}

Unit tests are exposed in the testbackend package.