Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

mpscnnneuronpowernode(3) [mojave man page]

MPSCNNNeuronPowerNode(3)				 MetalPerformanceShaders.framework				  MPSCNNNeuronPowerNode(3)

NAME
MPSCNNNeuronPowerNode SYNOPSIS
#import <MPSNNGraphNodes.h> Inherits MPSCNNNeuronNode. Instance Methods (nonnull instancetype) - initWithSource:a:b:c: (nonnull instancetype) - initWithSource: Class Methods (nonnull instancetype) + nodeWithSource:a:b:c: (nonnull instancetype) + nodeWithSource: Additional Inherited Members Detailed Description A node representing a MPSCNNNeuronPower kernel For each pixel, applies the following function: f(x) = (a * x + b) ^ c Method Documentation - (nonnull instancetype) initWithSource: (MPSNNImageNode *__nonnull) sourceNode Init a node with default values for parameters a, b, and c - (nonnull instancetype) initWithSource: (MPSNNImageNode *__nonnull) sourceNode(float) a(float) b(float) c Init a node representing a MPSCNNNeuronPower kernel For each pixel, applies the following function: f(x) = (a * x + b) ^ c Parameters: sourceNode The MPSNNImageNode representing the source MPSImage for the filter a See discussion above. b See discussion above. c See discussion above. Returns: A new MPSNNFilter node for a MPSCNNNeuronPower kernel. + (nonnull instancetype) nodeWithSource: (MPSNNImageNode *__nonnull) sourceNode Create an autoreleased node with default values for parameters a, b, and c + (nonnull instancetype) nodeWithSource: (MPSNNImageNode *__nonnull) sourceNode(float) a(float) b(float) c Author Generated automatically by Doxygen for MetalPerformanceShaders.framework from the source code. Version MetalPerformanceShaders-100 Thu Feb 8 2018 MPSCNNNeuronPowerNode(3)

Check Out this Related Man Page

MPSCNNNeuronExponentialNode(3)				 MetalPerformanceShaders.framework			    MPSCNNNeuronExponentialNode(3)

NAME
MPSCNNNeuronExponentialNode SYNOPSIS
#import <MPSNNGraphNodes.h> Inherits MPSCNNNeuronNode. Instance Methods (nonnull instancetype) - initWithSource:a:b:c: (nonnull instancetype) - initWithSource: Class Methods (nonnull instancetype) + nodeWithSource:a:b:c: (nonnull instancetype) + nodeWithSource: Additional Inherited Members Detailed Description A node representing a MPSCNNNeuronExponential kernel For each pixel, applies the following function: f(x) = c ^ (a * x + b) Method Documentation - (nonnull instancetype) initWithSource: (MPSNNImageNode *__nonnull) sourceNode Init a node with default values for parameters a, b, and c - (nonnull instancetype) initWithSource: (MPSNNImageNode *__nonnull) sourceNode(float) a(float) b(float) c Init a node representing a MPSCNNNeuronExponential kernel For each pixel, applies the following function: f(x) = c ^ (a * x + b) Parameters: sourceNode The MPSNNImageNode representing the source MPSImage for the filter a See discussion above. b See discussion above. c See discussion above. Returns: A new MPSNNFilter node for a MPSCNNNeuronExponential kernel. + (nonnull instancetype) nodeWithSource: (MPSNNImageNode *__nonnull) sourceNode Create an autoreleased node with default values for parameters a, b, and c + (nonnull instancetype) nodeWithSource: (MPSNNImageNode *__nonnull) sourceNode(float) a(float) b(float) c Author Generated automatically by Doxygen for MetalPerformanceShaders.framework from the source code. Version MetalPerformanceShaders-100 Thu Feb 8 2018 MPSCNNNeuronExponentialNode(3)
Man Page

2 More Discussions You Might Find Interesting

1. Virtualization and Cloud Computing

Acronym irrelevance

Giles Nelson 09-05-2008 02:05 PM There's been lots of discussion very recently (and lots of discussion about the discussion) about how CEP is related to other software acronyms and what constitutes a CEP use case or not. See here and here. This kind of debate depresses me in two... (0 Replies)
Discussion started by: Linux Bot
0 Replies

2. Programming

passing float parameter

I am surprised by GCC (this is ver. 4.2.4, Ubuntu 32 bit Intel) when a function declares a float parameter and it's prototype is missing, the parameters are messed up. Please see my code below: ~/test$ cat x1.c #include <stdio.h> #include <stdlib.h> set_p(int p1, float p2, int p3, int p4)... (7 Replies)
Discussion started by: migurus
7 Replies