Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for Ioperm (0.22 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. src/cmd/internal/obj/s390x/asmz.go

    			opset(AVMSLG, r)
    			opset(AVMSLEG, r)
    			opset(AVMSLOG, r)
    			opset(AVMSLEOG, r)
    		case AVSEL:
    			opset(AVFMADB, r)
    			opset(AWFMADB, r)
    			opset(AVFMSDB, r)
    			opset(AWFMSDB, r)
    			opset(AVPERM, r)
    		case AKM:
    			opset(AKMC, r)
    			opset(AKLMD, r)
    			opset(AKIMD, r)
    		case AKMA:
    			opset(AKMCTR, r)
    		}
    	}
    }
    
    const (
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 16 17:46:09 UTC 2024
    - 176.7K bytes
    - Viewed (0)
Back to top