Skip to content
This repository has been archived by the owner on Dec 30, 2019. It is now read-only.

Implement Native Convolution Backward #8

Open
drahnr opened this issue Apr 27, 2017 · 2 comments
Open

Implement Native Convolution Backward #8

drahnr opened this issue Apr 27, 2017 · 2 comments
Assignees

Comments

@drahnr
Copy link
Member

drahnr commented Apr 27, 2017

No description provided.

@subversive-owl
Copy link

subversive-owl commented Mar 2, 2018

These are the calls, right?

fn convolution_grad_filter(&self,
                               src_data: &SharedTensor<T>,
                               dest_diff: &SharedTensor<T>,
                               filter_diff: &mut SharedTensor<T>,
                               workspace: &mut SharedTensor<u8>,
                               config: &Self::CC)
                               -> Result<(), ::co::error::Error> {
        unimplemented!()
    }

    fn convolution_grad_data(&self,
                             filter: &SharedTensor<T>,
                             x_diff: &SharedTensor<T>,
                             result_diff: &mut SharedTensor<T>,
                             workspace: &mut SharedTensor<u8>,
                             config: &Self::CC)
                             -> Result<(), ::co::error::Error> {
        unimplemented!()
    }

@drahnr
Copy link
Member Author

drahnr commented Mar 2, 2018

Yes, that is correct.

Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants