MCPcopy Create free account
hub / github.com/pytorch/examples / Foo

Class Foo

fx/primitive_library.py:45–49  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

43# that uses these functions
44
45class Foo(torch.nn.Module):
46 def forward(self, x, y):
47 x = sigmoid_lowp(x)
48 y = sigmoid_lowp(y)
49 return add_lowp(x, y)
50
51
52traced = torch.fx.symbolic_trace(Foo())

Callers 1

Calls

no outgoing calls

Tested by

no test coverage detected