- 
                Notifications
    You must be signed in to change notification settings 
- Fork 95
Assume commutative multiplication exactly when necessary #540
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
          
     Draft
      
      
            sethaxen
  wants to merge
  25
  commits into
  main
  
    
      
        
          
  
    
      Choose a base branch
      
     
    
      
        
      
      
        
          
          
        
        
          
            
              
              
              
  
           
        
        
          
            
              
              
           
        
       
     
  
        
          
            
          
            
          
        
       
    
      
from
commmul
  
      
      
   
  
    
  
  
  
 
  
      
    base: main
Could not load branches
            
              
  
    Branch not found: {{ refName }}
  
            
                
      Loading
              
            Could not load tags
            
            
              Nothing to show
            
              
  
            
                
      Loading
              
            Are you sure you want to change the base?
            Some commits from the old base branch may be removed from the timeline,
            and old review comments may become outdated.
          
          
  
     Draft
                    Changes from all commits
      Commits
    
    
            Show all changes
          
          
            25 commits
          
        
        Select commit
          Hold shift + click to select a range
      
      c35f043
              
                Remove CommutativeMulNumber restrictions
              
              
                sethaxen 5e036ca
              
                Simplify rrule for ldiv
              
              
                sethaxen 331c65f
              
                Release type constraints
              
              
                sethaxen 405427f
              
                Constrain types where necessary
              
              
                sethaxen b4e90dc
              
                Add missing projectors
              
              
                sethaxen 723ae92
              
                Remove unneeded broadcasting and comments
              
              
                sethaxen f7293d2
              
                Small speedup when cotangent is zero
              
              
                sethaxen 41a7d27
              
                Generalize cross
              
              
                sethaxen 55d64f1
              
                Merge branch 'main' into commmul
              
              
                sethaxen 0cb446f
              
                Add some projectors
              
              
                sethaxen 964e424
              
                More generalizations
              
              
                sethaxen d1e8c2a
              
                Revert "Add some projectors"
              
              
                sethaxen 13d0c84
              
                Remove projector
              
              
                sethaxen 55abdeb
              
                Fix return arguments
              
              
                sethaxen c5f032d
              
                Fix argument order
              
              
                sethaxen 057d7d6
              
                Undo changes to rrule
              
              
                sethaxen ed16465
              
                Work around Julia issue
              
              
                sethaxen 8fd8c41
              
                Relax constraints
              
              
                sethaxen 9237994
              
                Remove added projectors
              
              
                sethaxen 0e6f76b
              
                Fix slash rules
              
              
                sethaxen 8be7c70
              
                Repair rules for non-commutative mul inputs
              
              
                sethaxen 9475447
              
                Add quaternion helper
              
              
                sethaxen dc29655
              
                Test rules using quaternions
              
              
                sethaxen 3e6e838
              
                Add note RE source of rand implementations
              
              
                sethaxen c05b577
              
                Merge branch 'main' into commmul
              
              
                sethaxen 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 hidden or 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.
        
    
  
  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.
Can I ask why you moved the minus?
If it was
-true * Ω' * ΔΩ * Ω'then I think you'd save a copy (since this gets fused intomul!).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.
So that if
ΔΩis anAbstractZeroor aUniformScaling, then the negation is cheaper.I didn't follow this. How is this fused into the
mul!?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.
(this was not an important change, and I'm happy to remove)
Uh oh!
There was an error while loading. Please reload this page.
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.
Ah, I didn't think about those. For dense matrices there's a 4-arg method which fuses this:
But with
I, no fusion, hencef2is slower. Maybe*should have some extra methods for cases withI.