Skip to content

Partydonk/partydonk

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Partydonk Projects

Partydonk Logo

This project is lays down foundational features and changes that we want to bring to .NET to support both deep learning workloads and scientific workloads that currently make the use of .NET obnoxious in this space.

This draws both from capabilities that have been requested in the past, and both the implementations and designs that have been incorporated into other languages, notably Swift both as part of Google’s efforts with Swift for TensorFlow as well as Apple’s work on Swift Numerics that work in concert.

These are the capabilities that we want to introduce into our runtimes and languages, a more detailed description follows this text. These capabilities are generally designed to be framework neutral, and could be used with different deep learning and scientific libraries.

Abstract Static Interface Members

A prototype for supporting static members as part of an interface's contract, which is a building block for operator support against generic types that implement an interface.

Changes are required to both the C# language and .NET runtimes:

Example

interface INumeric<TSelf> where TSelf : INumeric<TSelf>
{
    abstract static TSelf Zero { get; }
    abstract static TSelf operator +(TSelf a, TSelf b);
}

struct PartydonkReal : INumeric<PartydonkReal>
{
    readonly double value;

    public PartydonkReal(double value)
        => this.value = value;

    public static PartydonkReal Zero { get; } = new PartydonkReal(0.0);
    
    public static PartydonkReal operator +(PartydonkReal a, PartydonkReal b)
        => new PartydonkReal(a.value + b.value);
}

static TNumeric Sum<TNumeric>(IEnumerable<TNumeric> numbers)
    where TNumeric : INumeric<TNumeric>
{
    var sum = TNumeric.Zero;
    foreach (var number in numbers)
        sum += number;
    return sum;
}

Try It Out

Note: development so far has only happened on macOS. More detailed instructions are available in the asim-playground README.

$ git clone https://github.com/partydonk/roslyn
$ cd roslyn-asim/asim-playground
$ make runtime
$ make samples

Contributing

This project welcomes contributions and suggestions. Most contributions require you to agree to a Contributor License Agreement (CLA) declaring that you have the right to, and actually do, grant us the rights to use your contribution. For details, visit https://cla.opensource.microsoft.com.

When you submit a pull request, a CLA bot will automatically determine whether you need to provide a CLA and decorate the PR appropriately (e.g., status check, comment). Simply follow the instructions provided by the bot. You will only need to do this once across all repos using our CLA.

This project has adopted the Microsoft Open Source Code of Conduct. For more information see the Code of Conduct FAQ or contact opencode@microsoft.com with any additional questions or comments.

About

No description, website, or topics provided.

Resources

License

Code of conduct

Security policy

Stars

Watchers

Forks

Releases

No releases published

Packages