Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 90 for Unary (0.04 sec)

  1. tensorflow/c/kernels_experimental.cc

      }
    
      const std::string type_index_name =
          ::tensorflow::port::MaybeAbiDemangle(a.TypeId().name());
    
      return ::tensorflow::errors::Internal(
          "No unary variant binary_op function found for op ADD Variant "
          "type_name: ",
          type_index_name, " for device type: ", cc_ctx->device()->name());
    }
    
    void TF_AddNVariant(TF_OpKernelContext* ctx,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 23 06:12:29 UTC 2024
    - 30.9K bytes
    - Viewed (0)
  2. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/evaluate/FirCompileTimeConstantEvaluator.kt

                ConstantValueKind.Boolean -> CompileTimeType.BOOLEAN
                ConstantValueKind.String -> CompileTimeType.STRING
    
                else -> CompileTimeType.ANY
            }
        }
    
        // Unary operators
        private fun FirLiteralExpression.evaluate(function: FirSimpleFunction): FirLiteralExpression? {
            if (value == null) return null
            (value as? String)?.let { opr ->
                evalUnaryOp(
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Fri Jun 07 11:53:09 UTC 2024
    - 16.2K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/gtest_pred_impl.h

                                                 #v1, \
                                                 pred, \
                                                 v1), on_failure)
    
    // Unary predicate assertion macros.
    #define EXPECT_PRED_FORMAT1(pred_format, v1) \
      GTEST_PRED_FORMAT1_(pred_format, v1, GTEST_NONFATAL_FAILURE_)
    #define EXPECT_PRED1(pred, v1) \
      GTEST_PRED1_(pred, v1, GTEST_NONFATAL_FAILURE_)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 14.8K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/ir/tf_op_base.td

    // example tf.Sub operation.
    def TF_CwiseBinary : NativeOpTrait<"TF::CwiseBinary">;
    
    // Coefficient wise unary operation, for example tf.Sqrt operation.
    def TF_CwiseUnary : NativeOpTrait<"TF::CwiseUnary">;
    
    // op op X == op X (unary) / X op X == X (binary)
    // This version requires TF_SameOperandsAndResultTypeResolveRef trait unlike
    // the core implementation requiring SameOperandsAndResultType.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Oct 30 06:52:55 UTC 2023
    - 30.5K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/quantization/tensorflow/utils/tf_to_uniform_attribute_utils.cc

    namespace mlir::quant {
    
    using QuantMethod = tensorflow::quantization::QuantizationMethod::PresetMethod;
    
    enum class OpType {
      kDynamicRangeOp,  // Dynamic Range kernels only have rhs attr.
      kUnaryOp,         // Unary ops have one min/max attr.
      kBinaryOp,        // Binary ops have lhs/rhs attr.
      kQuantizationOp,  // Quantization ops have input/output attr.
    };
    
    // For each op type, the following axis carries axis information:
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 18.7K bytes
    - Viewed (0)
  6. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/gtest_pred_impl.h

                                                 #v1, \
                                                 pred, \
                                                 v1), on_failure)
    
    // Unary predicate assertion macros.
    #define EXPECT_PRED_FORMAT1(pred_format, v1) \
      GTEST_PRED_FORMAT1_(pred_format, v1, GTEST_NONFATAL_FAILURE_)
    #define EXPECT_PRED1(pred, v1) \
      GTEST_PRED1_(pred, v1, GTEST_NONFATAL_FAILURE_)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 14.8K bytes
    - Viewed (0)
  7. platforms/jvm/code-quality/src/integTest/groovy/org/gradle/api/plugins/quality/pmd/PmdPluginVersionIntegrationTest.groovy

            file("build/reports/pmd/test.xml").assertContents(containsClass("org.gradle.Class1Test"))
            output.contains "\tUsing multiple unary operators may be a bug"
            output.contains "\tEnsure you override both equals() and hashCode()"
        }
    
        void "can configure number of threads on good code"() {
            goodCode()
            buildFile << """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 28 18:47:00 UTC 2024
    - 13.5K bytes
    - Viewed (0)
  8. src/go/ast/ast.go

    	}
    
    	// A StarExpr node represents an expression of the form "*" Expression.
    	// Semantically it could be a unary "*" expression, or a pointer type.
    	//
    	StarExpr struct {
    		Star token.Pos // position of "*"
    		X    Expr      // operand
    	}
    
    	// A UnaryExpr node represents a unary expression.
    	// Unary "*" expressions are represented via StarExpr nodes.
    	//
    	UnaryExpr struct {
    		OpPos token.Pos   // position of Op
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 28 21:32:41 UTC 2024
    - 35.6K bytes
    - Viewed (0)
  9. src/go/types/expr.go

    	typ = Unalias(typ)
    	if tpar, _ := typ.(*TypeParam); tpar != nil {
    		return tpar.underIs(f)
    	}
    	return f(under(typ))
    }
    
    // The unary expression e may be nil. It's passed in for better error messages only.
    func (check *Checker) unary(x *operand, e *ast.UnaryExpr) {
    	check.expr(nil, x, e.X)
    	if x.mode == invalid {
    		return
    	}
    
    	op := e.Op
    	switch op {
    	case token.AND:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 02:09:54 UTC 2024
    - 49.7K bytes
    - Viewed (0)
  10. src/go/parser/parser.go

    		arrow := p.pos
    		p.next()
    
    		// If the next token is token.CHAN we still don't know if it
    		// is a channel type or a receive operation - we only know
    		// once we have found the end of the unary expression. There
    		// are two cases:
    		//
    		//   <- type  => (<-type) must be channel type
    		//   <- expr  => <-(expr) is a receive from an expression
    		//
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 08 20:07:50 UTC 2023
    - 72.2K bytes
    - Viewed (0)
Back to top