Search Options

Results per page
Sort
Preferred Languages
Advance

Results 161 - 170 of 229 for transposes (0.39 sec)

  1. tensorflow/cc/framework/cc_ops_test.cc

      test::ExpectTensorEqual<int>(out, test::AsTensor<int>({42}, {1, 1}));
    }
    
    TEST(CCOpTest, Attrs) {
      Scope root = Scope::NewRootScope();
      auto m = MatMul(root, {{1}, {1}}, {{41}, {1}}, MatMul::TransposeA(true));
      TF_EXPECT_OK(root.status());
      Tensor out;
      test::GetTensor(root, m, &out);
      test::ExpectTensorEqual<int>(out, test::AsTensor<int>({42}, {1, 1}));
    }
    
    TEST(CCOpTest, SplitConcat) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Apr 15 15:13:38 UTC 2023
    - 8.7K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/transforms/prepare_tf.cc

      TFL::populateWithGenerated(patterns);
      // TODO(fengliuai): Implement similar rule in the QuantizePass if the constant
      // folding hook of tfl.transpose and tfl.reshape are implemented.
      patterns.add<ReorderFakeQuantPattern<TF::ReshapeOp>,
                   ReorderFakeQuantPattern<TF::TransposeOp>>(ctx);
      // Remove redundant reshape ops.
      TF::ReshapeOp::getCanonicalizationPatterns(patterns, ctx);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 28 21:49:50 UTC 2024
    - 64.6K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/quantization/tensorflow/passes/quantized_function_library.mlir

        %2 = "tf.Cast"(%identity) {Truncate = false} : (tensor<*xi8>) -> tensor<*xi32>
        %3 = "tf.Sub"(%2, %weight_zp) : (tensor<*xi32>, tensor<*xi32>) -> tensor<*xi32>
    
        %5 = "tf.MatMul"(%1, %3) {
          attr_map = "transpose_a:0,transpose_b:1"
        } : (tensor<*xi32>, tensor<*xi32>) -> tensor<*xi32>
        func.return %5 : tensor<*xi32>
      }
    
      // Conv3D with int32 accumulation.
      func.func private @internal_conv3d_fn(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Jan 08 01:16:10 UTC 2024
    - 30.6K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/tests/tf-ops.mlir

      func.return %0 : tensor<3x2xf32>
    }
    
    // -----
    
    // Test tf.Transpose with invalid index of perm
    func.func @testTranspose(tensor<2x2xf32>) -> tensor<2x2xf32> {
    ^bb0(%arg0: tensor<2x2xf32>):
      %cst = arith.constant dense<[1, -3]> : tensor<2xi32>
      // expected-error @+1 {{'tf.Transpose' op perm[1]=-3 must be in range [-2, 2)}}
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Oct 23 14:40:35 UTC 2023
    - 236.4K bytes
    - Viewed (0)
  5. tensorflow/cc/gradients/math_grad_test.cc

        TestMatMulGradHelper<T>(
            /*is_x_batch=*/false, /*is_y_batch=*/false, t_x, t_y,
            [&](Output x, Output y) {
              return MatMul(root_, x, y, MatMul::TransposeA(t_x).TransposeB(t_y));
            });
      }
    
      template <typename T>
      void TestBatchMatMulGrad(const bool t_x, const bool t_y) {
        TestMatMulGradHelper<T>(
            /*is_x_batch=*/true, /*is_y_batch=*/true, t_x, t_y,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Aug 25 18:20:20 UTC 2023
    - 36K bytes
    - Viewed (0)
  6. src/cmd/go/internal/web/api.go

    package web
    
    import (
    	"bytes"
    	"fmt"
    	"io"
    	"io/fs"
    	"net/url"
    	"strings"
    	"unicode"
    	"unicode/utf8"
    )
    
    // SecurityMode specifies whether a function should make network
    // calls using insecure transports (eg, plain text HTTP).
    // The zero value is "secure".
    type SecurityMode int
    
    const (
    	SecureOnly      SecurityMode = iota // Reject plain HTTP; validate HTTPS.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 25 13:00:34 UTC 2022
    - 6.9K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/types2/initorder.go

    					for dep := range d.deps {
    						fmt.Printf("\t\t%s\n", dep.Name())
    					}
    				} else {
    					fmt.Printf("\t%s has no dependencies\n", obj.Name())
    				}
    			}
    		}
    		fmt.Println()
    
    		fmt.Println("Transposed object dependency graph (functions eliminated):")
    		for _, n := range pq {
    			fmt.Printf("\t%s depends on %d nodes\n", n.obj.Name(), n.ndeps)
    			for p := range n.pred {
    				fmt.Printf("\t\t%s is dependent\n", p.obj.Name())
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 28 22:06:51 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  8. src/go/types/initorder.go

    					for dep := range d.deps {
    						fmt.Printf("\t\t%s\n", dep.Name())
    					}
    				} else {
    					fmt.Printf("\t%s has no dependencies\n", obj.Name())
    				}
    			}
    		}
    		fmt.Println()
    
    		fmt.Println("Transposed object dependency graph (functions eliminated):")
    		for _, n := range pq {
    			fmt.Printf("\t%s depends on %d nodes\n", n.obj.Name(), n.ndeps)
    			for p := range n.pred {
    				fmt.Printf("\t\t%s is dependent\n", p.obj.Name())
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 03 18:48:38 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  9. docs/config/README.md

    cors_allow_origin               (csv)       set comma separated list of origins allowed for CORS requests (default: '*')
    remote_transport_deadline       (duration)  set the deadline for API requests on remote transports while proxying between federated instances e.g. "2h" (default: '2h')
    list_quorum                     (string)    set the acceptable quorum expected for list operations e.g. "optimal", "reduced", "disk", "strict" (default: 'strict')
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Sep 11 21:48:54 UTC 2023
    - 17.7K bytes
    - Viewed (0)
  10. src/runtime/mklockrank.go

    		// a "<" partial order than a ">" partial order. This
    		// ways, locks are acquired from the top going down
    		// and time moves forward over the edges instead of
    		// backward.
    		g.Transpose()
    		generateDot(&b, g)
    		out = b.Bytes()
    	} else {
    		var b bytes.Buffer
    		generateGo(&b, g)
    		out, err = format.Source(b.Bytes())
    		if err != nil {
    			log.Fatal(err)
    		}
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 17:47:01 UTC 2024
    - 9.1K bytes
    - Viewed (0)
Back to top