Skip to main content
  • Home
  • Development
  • Documentation
  • Donate
  • Operational login
  • Browse the archive

swh logo
SoftwareHeritage
Software
Heritage
Archive
Features
  • Search

  • Downloads

  • Save code now

  • Add forge now

  • Help

Raw File Download

To reference or cite the objects present in the Software Heritage archive, permalinks based on SoftWare Hash IDentifiers (SWHIDs) must be used.
Select below a type of object currently browsed in order to display its associated SWHID and permalink.

  • content
content badge
swh:1:cnt:055fd382c7f31081061c21a7a43f3cdc6cbd73ae

This interface enables to generate software citations, provided that the root directory of browsed objects contains a citation.cff or codemeta.json file.
Select below a type of object currently browsed in order to generate citations for them.

  • content
(requires biblatex-software package)
Generating citation ...
from typing import Optional
import torch
import torch.nn.functional as F


def compute_form_factors_utils(position: torch.Tensor,
                         n: torch.Tensor,
                         light_poses: torch.Tensor,
                         light_normals: torch.Tensor,
                         with_cos: Optional[bool] = True) -> torch.Tensor:
    """
    Compute form factors in world space
    Formula: (wi * np) * (-wi * nl) / ||xl - xp||^2

    Args:
        position: the position of the point, of shape (batch, 3)
        n: the normal of the shading point, of shape (batch, 3)
        light_poses: shape (lightnum, 3)
        light_normals: shape (lightnum, 3)
        with_cos: if true, form factor add cos(ldir · light_normals)

    Returns:
        form_factor: (batch, lightnum, 1)
    """
    ldir = torch.unsqueeze(light_poses, dim=0) - torch.unsqueeze(position,
                                                                 dim=1)
    dist = torch.sqrt(torch.sum(ldir**2, dim=2,
                                keepdim=True))  
    ldir = F.normalize(ldir, dim=2)  

    a = torch.sum(ldir * torch.unsqueeze(n, dim=1), dim=2, keepdim=True)
    a = torch.clamp(a, min=0)  

    if not with_cos:
        return a

    b = dist * dist 
    
    c = torch.sum(ldir * torch.unsqueeze(light_normals, dim=0),
                  dim=2,
                  keepdim=True)
    c = torch.clamp(c, min=0)  

    return a / (b + 1e-6) * c

back to top

Software Heritage — Copyright (C) 2015–2026, The Software Heritage developers. License: GNU AGPLv3+.
The source code of Software Heritage itself is available on our development forge.
The source code files archived by Software Heritage are available under their own copyright and licenses.
Terms of use: Archive access, API— Content policy— Contact— JavaScript license information— Web API