-
Notifications
You must be signed in to change notification settings - Fork 3.4k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add multm_prev_ layer and enhance gemm() function for PLANE_WISE operations #3020
Merged
+979
−286
Merged
Changes from 13 commits
Commits
Show all changes
36 commits
Select commit
Hold shift + click to select a range
4d698fc
Fix Stride Indexing Bugs in `reorg` and `reorg_gradient` Functions (C…
Cydral 1d73b6c
'add_to' parameter missing in cuda call reorg_gradient.launch_kernel()
Cydral c343779
Cleanup: remove using namespace std; (#3016)
arrufat 724ec09
Merge branch 'refs/heads/master' into Cydral-master
davisking 4dca9b2
fix build error
davisking 2f68a11
Adjust comment formatting to be like other dlib comments
davisking 64e3471
Merge branch 'davisking:master' into master
Cydral 640c02f
Add positional encodings layer to Dlib
Cydral 0f1e250
Add multm_prev layer and enhance gemm() function for PLANE_WISE opera…
Cydral e8e10ce
Updates
Cydral 06a7f6a
Updates
Cydral d40171d
Merge branch 'master' into multm-prev-layer
Cydral 0d60627
Resynchronization with tril_ class
Cydral ed39b2c
Delete .vscode/settings.json
Cydral 8e2a48c
Merge branch 'master' into multm-prev-layer
Cydral 300a8c6
Remove duplicates
Cydral d173fbd
Small improvements to PLANE_WISE in gemm() function
Cydral c81efb7
Same improvements for the CPU version
Cydral 89746e2
Merge branch 'davisking:master' into multm-prev-layer
Cydral 3d60227
Introducing a new enum for operation modes in tensor computations
Cydral a257f02
Remove a test duplicated call in dnn tests
Cydral 21dc524
Remove duplicated declaration
Cydral 439bb87
Comment fixed
Cydral ca01599
Fixing the Cuda compilation
Cydral 2772dca
Merging with updated softmax_ layer
Cydral 1ff436e
Fixing header for CPU compilation
Cydral 274f32f
Adding a missing cast
Cydral 8685ed8
Test fixed to use the new operation_mode enum
Cydral 275bafc
softmaxm test fixed
Cydral 6beab3b
Enum test removed
Cydral 39b09d9
Enum test removed
Cydral caed8ff
Fixing indentation
Cydral fbaa299
Fixing indentation
Cydral f2dea1e
Test removed
Cydral c9cc82f
Move the operation_mode enumeration to its own header
Cydral efda8e7
Use operation_mode instead of unsigned long
davisking File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
{ | ||
"githubPullRequests.ignoredPullRequestBranches": [ | ||
"master" | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Do you intend to add this? Like does this make life easier for vscode users in some way? I'm not necessarily adverse to it but it seems like the sort of thing that would normally be purely local to individual users.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
No, of course. I don't know where that came from... obviously it was added by GitHub tooling when I made fixes