Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 11 for Ioperm (0.11 sec)

  1. 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)
  2. src/cmd/vendor/rsc.io/markdown/entity.go

    	"&omid;":                            "\u29b6",
    	"&ominus;":                          "\u2296",
    	"&oopf;":                            "\U0001d560",
    	"&opar;":                            "\u29b7",
    	"&operp;":                           "\u29b9",
    	"&oplus;":                           "\u2295",
    	"&or;":                              "\u2228",
    	"&orarr;":                           "\u21bb",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 101K bytes
    - Viewed (0)
  3. src/cmd/internal/obj/ppc64/asm9.go

    			opset(AVCMPNEZBCC, r0)
    			opset(AVCMPNEB, r0)
    			opset(AVCMPNEBCC, r0)
    			opset(AVCMPNEH, r0)
    			opset(AVCMPNEHCC, r0)
    			opset(AVCMPNEW, r0)
    			opset(AVCMPNEWCC, r0)
    
    		case AVPERM: /* vperm */
    			opset(AVPERMXOR, r0)
    			opset(AVPERMR, r0)
    
    		case AVBPERMQ: /* vbpermq, vbpermd */
    			opset(AVBPERMD, r0)
    
    		case AVSEL: /* vsel */
    			opset(AVSEL, r0)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 13:55:28 UTC 2024
    - 156.1K bytes
    - Viewed (0)
  4. tensorflow/c/c_api.cc

    const char* TF_OperationName(TF_Operation* oper) {
      return oper->node.name().c_str();
    }
    
    const char* TF_OperationOpType(TF_Operation* oper) {
      return oper->node.type_string().c_str();
    }
    
    const char* TF_OperationDevice(TF_Operation* oper) {
      return oper->node.requested_device().c_str();
    }
    
    int TF_OperationNumOutputs(TF_Operation* oper) {
      return oper->node.num_outputs();
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 15 03:35:10 UTC 2024
    - 102.3K bytes
    - Viewed (0)
  5. src/html/entity.go

    		"omid;":                            '\U000029B6',
    		"ominus;":                          '\U00002296',
    		"oopf;":                            '\U0001D560',
    		"opar;":                            '\U000029B7',
    		"operp;":                           '\U000029B9',
    		"oplus;":                           '\U00002295',
    		"or;":                              '\U00002228',
    		"orarr;":                           '\U000021BB',
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jul 31 22:10:54 UTC 2018
    - 114.3K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/sys/unix/zerrors_linux.go

    	ENOMEM      = syscall.Errno(0xc)
    	ENOSPC      = syscall.Errno(0x1c)
    	ENOTBLK     = syscall.Errno(0xf)
    	ENOTDIR     = syscall.Errno(0x14)
    	ENOTTY      = syscall.Errno(0x19)
    	ENXIO       = syscall.Errno(0x6)
    	EPERM       = syscall.Errno(0x1)
    	EPIPE       = syscall.Errno(0x20)
    	ERANGE      = syscall.Errno(0x22)
    	EROFS       = syscall.Errno(0x1e)
    	ESPIPE      = syscall.Errno(0x1d)
    	ESRCH       = syscall.Errno(0x3)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 185.8K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/lite/ir/tfl_ops.td

        TFL_TensorOf<[I32]>:$perm
      );
    
      let results = (outs
        TFL_TensorOf<[I32, F32, I8, UI8, QI8, QUI8, TFL_Quint8, I1, I64, QI16]>:$output
      );
    
      let hasVerifier = 1;
    
      let hasFolder = 1;
    
      let hasCanonicalizer = 1;
    
      let builders = [
        OpBuilder<(ins "Value":$input, "Value":$perm),
        [{ BuildTransposeOp(&$_builder, $_state, input, perm); }]>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 06 19:09:08 UTC 2024
    - 186K bytes
    - Viewed (0)
  8. pkg/kubelet/kubelet_pods.go

    				// later auto-create it with the incorrect mode 0750
    				// Make extra care not to escape the volume!
    				perm, err := hu.GetMode(volumePath)
    				if err != nil {
    					return nil, cleanupAction, err
    				}
    				if err := subpather.SafeMakeDir(subPath, volumePath, perm); err != nil {
    					// Don't pass detailed error back to the user because it could give information about host filesystem
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 101.2K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/lite/tests/ops.mlir

      func.return %0 : tensor<2x2xi32>
    }
    
    
    // -----
    
    func.func @transpose_perm_size(%arg0 : tensor<2x2xi32>, %arg1 : tensor<3xi32>) -> tensor<2x2xi32> {
      // expected-error @+1 {{perm tensor elements size is not equal to input tensor rank}}
      %0 = "tfl.transpose"(%arg0, %arg1) : (tensor<2x2xi32>, tensor<3xi32>) -> tensor<2x2xi32>
      func.return %0 : tensor<2x2xi32>
    }
    
    
    // -----
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 06 19:09:08 UTC 2024
    - 189.2K bytes
    - Viewed (0)
  10. okhttp/src/test/resources/okhttp3/internal/publicsuffix/public_suffix_list.dat

    opencraft.hosting
    
    // OpenResearch GmbH: https://openresearch.com/
    // Submitted by Philipp Schmid <******@****.***>
    orsites.com
    
    // Opera Software, A.S.A.
    // Submitted by Yngve Pettersen <yngve@opera.com>
    operaunite.com
    
    // Orange : https://www.orange.com
    // Submitted by Alexandre Linte <******@****.***>
    tech.orange
    
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Wed Dec 20 23:27:07 UTC 2023
    - 240.3K bytes
    - Viewed (0)
Back to top