Skip to content

Commit

Permalink
setting up last python release
Browse files Browse the repository at this point in the history
  • Loading branch information
Jorgedavyd committed Jul 1, 2024
1 parent b22941b commit 68c4379
Show file tree
Hide file tree
Showing 5 changed files with 29 additions and 6 deletions.
11 changes: 11 additions & 0 deletions .github/workflows/CD.yml
Original file line number Diff line number Diff line change
Expand Up @@ -56,3 +56,14 @@ jobs:

- name: Clean up
run: rm -rf build dist *.egg-info

- name: Create Release
id: create_release
uses: actions/create-release@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
tag_name: ${{ env.TAG_NAME }}
release_name: ${{ env.TAG_NAME }}
draft: false
prerelease: false
3 changes: 1 addition & 2 deletions docs/RELEASES.md
Original file line number Diff line number Diff line change
@@ -1,2 +1 @@
# 0.0.1
First Release
# 0.0.4
5 changes: 4 additions & 1 deletion lightorch/csrc/include/lightorch/nn/cuda/deeprnn.cu
Original file line number Diff line number Diff line change
@@ -1 +1,4 @@
// Optimized implementation for deep recurrent neural networks
// Deep Neural Network
#include <cuda.h>
#include <torch/extension.h>

2 changes: 1 addition & 1 deletion lightorch/csrc/include/lightorch/nn/deeprnn.h
Original file line number Diff line number Diff line change
@@ -1 +1 @@
// Optimized implementation for deep recurrent neural networks
// Optimized implementation for deep recurrent neural networks
14 changes: 12 additions & 2 deletions lightorch/csrc/include/lightorch/nn/embedding.h
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,21 @@

namespace F = torch::nn::functional;

at::Tensor patch_embed_2d () {
at::Tensor patch_embed_2d_forward () {

}

at::Tensor patch_embed_2d_backward () {

}


at::Tensor patch_embed_3d_forward () {

}

at::Tensor patch_embed_3d () {
at::Tensor patch_embed_3d_backward () {

}


0 comments on commit 68c4379

Please sign in to comment.