Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 124 for OP (0.04 sec)

  1. src/go/printer/nodes.go

    // Expressions
    
    func walkBinary(e *ast.BinaryExpr) (has4, has5 bool, maxProblem int) {
    	switch e.Op.Precedence() {
    	case 4:
    		has4 = true
    	case 5:
    		has5 = true
    	}
    
    	switch l := e.X.(type) {
    	case *ast.BinaryExpr:
    		if l.Op.Precedence() < e.Op.Precedence() {
    			// parens will be inserted.
    			// pretend this is an *ast.ParenExpr and do nothing.
    			break
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 17 18:53:17 UTC 2023
    - 52.6K bytes
    - Viewed (0)
  2. tensorflow/c/c_api.h

                                            const char* device);
    
    // The calls to TF_AddInput and TF_AddInputList must match (in number,
    // order, and type) the op declaration.  For example, the "Concat" op
    // has registration:
    //   REGISTER_OP("Concat")
    //       .Input("concat_dim: int32")
    //       .Input("values: N * T")
    //       .Output("output: T")
    //       .Attr("N: int >= 2")
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Oct 26 21:08:15 UTC 2023
    - 82.3K bytes
    - Viewed (0)
  3. src/cmd/vendor/github.com/ianlancetaylor/demangle/demangle.go

    	if isDigit(c) {
    		a = st.sourceName()
    	} else if isLower(c) {
    		a, _ = st.operatorName(false)
    		if _, ok := a.(*Cast); ok {
    			isCast = true
    		}
    		if op, ok := a.(*Operator); ok && op.Name == `operator"" ` {
    			n := st.sourceName()
    			a = &Unary{Op: op, Expr: n, Suffix: false, SizeofType: false}
    		}
    	} else if c == 'D' && len(st.str) > 1 && st.str[1] == 'C' {
    		var bindings []AST
    		st.advance(2)
    		for {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 94.1K bytes
    - Viewed (0)
  4. tensorflow/compiler/jit/mark_for_compilation_pass_test.cc

        for (auto op : pair.second) {
          ASSERT_TRUE(all_ops.contains(op));
        }
      }
    
      // Check that all registered XLA operation are in the allowlist
      // table or are known to not be in it.
    
      absl::flat_hash_set<string> known_not_in_list =
          tensorflow::testing::GetKnownXLAAllowlistOp();
      std::vector<string> unknow_op;
      for (string op : vall_ops) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 14 10:11:10 UTC 2024
    - 79.6K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiextensions-apiserver/test/integration/ratcheting_test.go

    				DynamicClient:       dynamicClient,
    				APIExtensionsClient: apiExtensionClient,
    			}
    
    			for i, op := range c.Operations {
    				t.Logf("Performing Operation: %v", op.Description())
    				if err := op.Do(ctx); err != nil {
    					t.Fatalf("failed %T operation %v: %v\n%v", op, i, err, op)
    				}
    			}
    
    			// Reset resources
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 28 08:48:22 UTC 2024
    - 59.5K bytes
    - Viewed (0)
  6. tensorflow/c/kernels_test.cc

    #include "tensorflow/core/framework/kernel_def.pb.h"
    #include "tensorflow/core/framework/node_def.pb.h"
    #include "tensorflow/core/framework/node_def_builder.h"
    #include "tensorflow/core/framework/op.h"
    #include "tensorflow/core/framework/op_kernel.h"
    #include "tensorflow/core/framework/tensor.h"
    #include "tensorflow/core/framework/tensor_types.h"
    #include "tensorflow/core/framework/types.h"
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Sep 06 19:12:29 UTC 2023
    - 50.4K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/lite/BUILD

    )
    
    gentbl_cc_library(
        name = "tensorflow_lite_ops_inc_gen",
        compatible_with = get_compatible_with_portable(),
        tbl_outs = [
            (
                ["-gen-op-decls"],
                "ir/tfl_ops.h.inc",
            ),
            (
                ["-gen-op-defs"],
                "ir/tfl_ops.cc.inc",
            ),
            (
                [
                    "-gen-dialect-doc",
                    "-dialect=tfl",
                ],
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:41:49 UTC 2024
    - 49.9K bytes
    - Viewed (0)
  8. src/go/printer/testdata/parser.go

    	if p.trace {
    		defer un(trace(p, "UnaryExpr"))
    	}
    
    	switch p.tok {
    	case token.ADD, token.SUB, token.NOT, token.XOR, token.AND, token.RANGE:
    		pos, op := p.pos, p.tok
    		p.next()
    		x := p.parseUnaryExpr(false)
    		return &ast.UnaryExpr{pos, op, p.checkExpr(x)}
    
    	case token.ARROW:
    		// channel type or receive expression
    		pos := p.pos
    		p.next()
    		if p.tok == token.CHAN {
    			p.next()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jul 20 20:19:51 UTC 2023
    - 50.5K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/quantization/stablehlo/python/integration_test/quantize_model_test.py

            ),
            0.65,
        )
    
        if merge_fusion_with_dequantize:
          # Check activation functions are explicitly present.
          # If present the last op before return should be stablehlo.clamp for relu6
          # and stablehlo.maximum for relu.
          if activation_fn is nn_ops.relu6:
            self.assertRegex(module_str, r'stablehlo.clamp.*\n.*return')
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 14 06:31:57 UTC 2024
    - 51.4K bytes
    - Viewed (0)
  10. tensorflow/BUILD

    # ops. Since other languages use the same libtensorflow_framework.so, op
    # libraries are language agnostic.
    #
    # This shared object is not used unless framework_shared_object=true (set in the
    # configure script unconditionally); otherwise if it is false or undefined, the
    # build is static and TensorFlow symbols (in Python only) are loaded into the
    # global symbol table in order to support op registration. This means that
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 31 16:51:59 UTC 2024
    - 53.5K bytes
    - Viewed (0)
Back to top