Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 403 for Tperm (0.06 sec)

  1. tensorflow/compiler/jit/force_xla_constants_on_host_pass_test.cc

      FunctionLibraryDefinition flib_def(OpRegistry::Global(), library);
      Output in = ops::Placeholder(root, DT_FLOAT);
      Output perm = ops::Const(root, {3, 1, 2, 0});
    
      NameAttrList b_name_attr;
      b_name_attr.set_name("TransposeCall");
      ops::PartitionedCall call(root.WithOpName("call"), {in, perm}, {DT_FLOAT},
                                b_name_attr);
      call.output.front().node()->AddAttr(kXlaMustCompileAttr, true);
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 08:47:20 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/tests/legalize-tf-while.mlir

      %cst_2 = arith.constant dense<1> : tensor<i32>
      %0 = "tf.AddV2"(%arg2, %cst_2) {T = i32, device = ""} : (tensor<*xi32>, tensor<i32>) -> tensor<*xi32>
      %1 = "tf.Transpose"(%arg3, %cst) {T = f32, Tperm = i32, device = ""} : (tensor<*xf32>, tensor<2xi32>) -> tensor<?x?xf32>
      %2 = "tf.Rank"(%arg3) : (tensor<*xf32>) -> tensor<i32>
      %3 = "tf.Range"(%2, %cst_0, %cst_1) : (tensor<i32>, tensor<i32>, tensor<i32>) -> tensor<?xi32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 5K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/tests/tf-ops.mlir

      // expected-error @+1 {{expected perm to be a 1-D Tensor, got perm of rank 2}}
      %0 = "tf.Transpose"(%arg0, %arg1) {T = "tfdtype$DT_FLOAT", Tperm = "tfdtype$DT_INT32"} : (tensor<2x3xf32>, tensor<1x2xi32>) -> tensor<3x2xf32>
      func.return %0 : tensor<3x2xf32>
    }
    
    // -----
    
    // Test tf.Transpose with invalid size of perm
    func.func @testTranspose(tensor<2x3xf32>) -> tensor<3x2xf32> {
    ^bb0(%arg0: tensor<2x3xf32>):
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Oct 23 14:40:35 UTC 2023
    - 236.4K bytes
    - Viewed (0)
  4. test/chan/perm.go

    Robert Griesemer <******@****.***> 1625880417 -0700
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jul 14 23:33:46 UTC 2021
    - 1.4K bytes
    - Viewed (0)
  5. src/crypto/aes/gcm_ppc64x.s

    	ADD    $0x40, INP, INP
    #ifdef GOARCH_ppc64le
    	VPERM  IN0, IN0, LEMASK, IN0
    	VPERM  IN1, IN1, LEMASK, IN1
    	VPERM  IN2, IN2, LEMASK, IN2
    	VPERM  IN3, IN3, LEMASK, IN3
    #endif
    
    	VXOR IN0, XL, XH
    
    	VPMSUMD IN1, H3L, XL1
    	VPMSUMD IN1, H3, XM1
    	VPMSUMD IN1, H3H, XH1
    
    	VPERM   H2, H, HIPERM, H21L
    	VPERM   IN2, IN3, LOPERM, T0
    	VPERM   H2, H, LOPERM, H21H
    	VPERM   IN2, IN3, HIPERM, T1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 27.1K bytes
    - Viewed (0)
  6. src/math/rand/regress_test.go

    	[]int{3, 0, 1, 2, 4},                // Perm(5)
    	[]int{5, 1, 2, 0, 4, 7, 3, 6},       // Perm(8)
    	[]int{4, 0, 6, 8, 1, 5, 2, 7, 3},    // Perm(9)
    	[]int{8, 6, 1, 7, 5, 4, 3, 2, 9, 0}, // Perm(10)
    	[]int{0, 3, 13, 2, 15, 4, 10, 1, 8, 14, 7, 6, 12, 9, 5, 11}, // Perm(16)
    	[]int{},                             // Perm(0)
    	[]int{0},                            // Perm(1)
    	[]int{0, 4, 2, 1, 3},                // Perm(5)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 13 18:45:54 UTC 2021
    - 17.8K bytes
    - Viewed (0)
  7. src/os/error_unix_test.go

    		isPermissionTest{err: &fs.PathError{Err: syscall.EACCES}, want: true},
    		isPermissionTest{err: &fs.PathError{Err: syscall.EPERM}, want: true},
    		isPermissionTest{err: &fs.PathError{Err: syscall.EEXIST}, want: false},
    
    		isPermissionTest{err: &os.LinkError{Err: syscall.EACCES}, want: true},
    		isPermissionTest{err: &os.LinkError{Err: syscall.EPERM}, want: true},
    		isPermissionTest{err: &os.LinkError{Err: syscall.EEXIST}, want: false},
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 07 23:34:21 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/lite/stablehlo/transforms/optimize_layout.cc

          type.getShape(), isInvert ? invertPermutationVector(perm) : perm);
      return RankedTensorType::get(permutedShape, type.getElementType());
    }
    
    static RankedTensorType GetInvertPermutedTensorType(RankedTensorType type,
                                                        ArrayRef<int64_t> perm) {
      return GetPermutedTensorTypeHelper(type, perm, true /*isInvert*/);
    }
    
    static Value CreateTranspose(OpBuilder& builder, Value source,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 21:59:06 UTC 2024
    - 8.6K bytes
    - Viewed (0)
  9. src/hash/crc32/crc32_s390x.s

    	VLM     0(R3), V1, V4    // 64-bytes into V1..V4
    
    	// Reflect the data if the CRC operation is in the bit-reflected domain
    	VPERM   V1, V1, CONST_PERM_LE2BE, V1
    	VPERM   V2, V2, CONST_PERM_LE2BE, V2
    	VPERM   V3, V3, CONST_PERM_LE2BE, V3
    	VPERM   V4, V4, CONST_PERM_LE2BE, V4
    
    	VX      V0, V1, V1     // V1 ^= CRC
    	ADD     $64, R3        // BUF = BUF + 64
    	ADD     $(-64), R4
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 20 00:49:17 UTC 2021
    - 7.6K bytes
    - Viewed (0)
  10. internal/lock/lock_nix.go

    // flags and shouldn't be considered as replacement
    // for os.OpenFile().
    func LockedOpenFile(path string, flag int, perm os.FileMode) (*LockedFile, error) {
    	return lockedOpenFile(path, flag, perm, 0)
    }
    
    // Open - Call os.OpenFile
    func Open(path string, flag int, perm os.FileMode) (*os.File, error) {
    	return os.OpenFile(path, flag, perm)
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Aug 19 01:35:22 UTC 2021
    - 2.8K bytes
    - Viewed (0)
Back to top