Searched refs:valueProperties (Results 1 – 5 of 5) sorted by relevance
29 op->outputs[0]->valueProperties = RandomOperand::NON_NEGATIVE; in elementwiseOpConstructor()32 op->outputs[0]->valueProperties = RandomOperand::NON_ZERO | RandomOperand::NON_NEGATIVE; in elementwiseOpConstructor()35 op->outputs[0]->valueProperties = RandomOperand::NON_NEGATIVE; in elementwiseOpConstructor()38 op->outputs[0]->valueProperties = RandomOperand::NON_ZERO | RandomOperand::NON_NEGATIVE; in elementwiseOpConstructor()41 op->inputs[0]->valueProperties = RandomOperand::NON_ZERO | RandomOperand::NON_NEGATIVE; in elementwiseOpConstructor()44 op->inputs[0]->valueProperties = RandomOperand::NON_ZERO | RandomOperand::NON_NEGATIVE; in elementwiseOpConstructor()45 op->outputs[0]->valueProperties = RandomOperand::NON_ZERO | RandomOperand::NON_NEGATIVE; in elementwiseOpConstructor()48 op->inputs[0]->valueProperties = RandomOperand::NON_NEGATIVE; in elementwiseOpConstructor()49 op->outputs[0]->valueProperties = RandomOperand::NON_NEGATIVE; in elementwiseOpConstructor()
104 inline T getUniformValue(int valueProperties, T low, T up, T zeroPoint) {105 if (valueProperties & RandomOperand::NON_NEGATIVE) {109 if (valueProperties & RandomOperand::NON_ZERO) {125 data[i] = getUniformValue<T>(op->valueProperties, low, up, zeroPoint);
75 op->inputs[1]->valueProperties = RandomOperand::NON_ZERO; in broadcastOpConstructor()79 op->inputs[0]->valueProperties = RandomOperand::NON_NEGATIVE; in broadcastOpConstructor()
66 other.doNotConnect || !areValuePropertiesCompatible(valueProperties, other.valueProperties)) in createEdgeIfValid()
51 int valueProperties = 0; member