Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 55 for strPtr (0.48 sec)

  1. tensorflow/compiler/mlir/quantization/common/ir/QuantOps.td

        quantized kernel.
      }];
    
      let arguments = (ins Variadic<AnyType>:$inputs,
                        TypeArrayAttr:$input_specs,
                        TypeArrayAttr:$output_specs,
                        StrAttr:$logical_kernel);
      let results = (outs Variadic<AnyType>:$outputs);
      let regions = (region SizedRegion<1>:$body);
      let hasVerifier = 1;
    }
    
    def Quantization_ReturnOp : Quantization_Op<"return", [Terminator]> {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jan 09 03:10:59 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tfrt/ir/tfrt_fallback_sync.td

        Example:
          tfrt_fallback_sync.createop() key(0) device("/CPU:0")
            "some.op"() {attr1 = value, attr2 = value2} {f_attr1 = "fn1", f_attr2 = "fn2"} num_args(1)
      }];
    
      let arguments = (ins
        StrAttr:$node_def,
        I32Attr:$op_key
      );
    
      let results = (outs);
    
      let assemblyFormat = "attr-dict";
    }
    
    def SyncExecuteOp : FallbackSync_Op<"executeop", [Pure]> {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 07 21:12:01 UTC 2023
    - 7.1K bytes
    - Viewed (0)
  3. src/crypto/aes/gcm_amd64.s

    	MOVQ src_base+32(FP), ptx
    	MOVQ src_len+40(FP), ptxLen
    	MOVQ ctr+56(FP), ctrPtr
    	MOVQ T+64(FP), tPtr
    	MOVQ ks_base+72(FP), ks
    	MOVQ ks_len+80(FP), NR
    
    	SHRQ $2, NR
    	DECQ NR
    
    	MOVOU bswapMask<>(SB), BSWAP
    	MOVOU gcmPoly<>(SB), POLY
    
    	MOVOU (tPtr), ACC0
    	PXOR ACC1, ACC1
    	PXOR ACCM, ACCM
    	MOVOU (ctrPtr), B0
    	MOVL (3*4)(ctrPtr), aluCTR
    	MOVOU (ks), T0
    	MOVL (3*4)(ks), aluK
    	BSWAPL aluCTR
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 23.4K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tfrt/ir/gpu_ops.td

        Example:
          %results = gpurt.compile_and_execute {func_name = "xla_func_0", resource_indices = [1] ...}
      }];
    
      let arguments = (ins
        Variadic<TFTensorType>:$operands,
        StrAttr:$func_name,
        I64ArrayAttr:$resource_indices,
        I64ArrayAttr:$used_output_indices
      );
      let results = (outs
        Variadic<TFTensorType>:$results
      );
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 18 15:01:21 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/transforms/lower_tf.td

          (TF_TensorScatterAddOp
           (TF_FillOp $shape, (TF_ConstOp (GetScalarOfType<0> $updates))),
           $indices, $updates)>;
    
    def LowerScatterNdOpDefaultBadIndicesPolicy :
      Pat<(TF_ScatterNdOp $indices,
           TensorOf<[AnyInteger, AnyFloat, AnyComplex]>:$updates, $shape, ConstantStrAttr<StrAttr, "DEFAULT">),
          (TF_TensorScatterAddOp
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 04 13:30:42 UTC 2024
    - 24.7K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/lite/transforms/legalize_patterns.td

    def LegalizeScatterNd : Pat<
      (TF_ScatterNdOp $indices, $updates, $shape, ConstantStrAttr<StrAttr, "">),
      (TFL_ScatterNdOp (CreateTFCastToInt32Op $indices), $updates,
        (CreateTFCastToInt32Op $shape))>;
    
    def LegalizeScatterNdDefaultBadindicesPolicy : Pat<
      (TF_ScatterNdOp $indices, $updates, $shape, ConstantStrAttr<StrAttr, "DEFAULT">),
      (TFL_ScatterNdOp (CreateTFCastToInt32Op $indices), $updates,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 04 13:30:42 UTC 2024
    - 28.5K bytes
    - Viewed (0)
  7. src/crypto/aes/gcm_arm64.s

    #undef autLen
    #undef H0
    #undef pTblSave
    
    // func gcmAesEnc(productTable *[256]byte, dst, src []byte, ctr, T *[16]byte, ks []uint32)
    TEXT ·gcmAesEnc(SB),NOSPLIT,$0
    #define pTbl R0
    #define dstPtr R1
    #define ctrPtr R2
    #define srcPtr R3
    #define ks R4
    #define tPtr R5
    #define srcPtrLen R6
    #define aluCTR R7
    #define aluTMP R8
    #define aluK R9
    #define NR R10
    #define H0 R11
    #define H1 R12
    #define curK R13
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 21.5K bytes
    - Viewed (0)
  8. tensorflow/c/eager/c_api_test.cc

        const char* device_name = TFE_OpGetDevice(matmul, status);
        ASSERT_TRUE(strstr(device_name, "GPU:0") != nullptr);
    
        TFE_OpSetDevice(matmul, "CPU:0", status);
        ASSERT_TRUE(TF_GetCode(status) == TF_OK) << TF_Message(status);
        device_name = TFE_OpGetDevice(matmul, status);
        ASSERT_TRUE(strstr(device_name, "CPU:0") != nullptr);
      }
    
      TFE_DeleteOp(matmul);
      TFE_DeleteTensorHandle(m);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Aug 03 20:50:20 UTC 2023
    - 94.6K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tfr/ir/tfr_ops.td

        TFR_AllTensorTypes.predicate,
        TFR_AllAttrTypes.predicate]>, "allowed tfr.call operand types">;
    
    def TFR_allowedConstValues : Attr<Or<[
        FlatSymbolRefAttr.predicate,
        TypeAttr.predicate,
        StrAttr.predicate,
        ArrayAttr.predicate]>, "allowed tfr.constant value"> {
      let storageType = "Attribute";
      let returnType = "Attribute";
      let convertFromStorage = "$_self";
      let constBuilderCall = "$0";
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 22 10:54:29 UTC 2024
    - 17.4K bytes
    - Viewed (0)
  10. src/encoding/gob/debug.go

    	wire, ok := deb.wireType[id]
    	if !ok {
    		errorf("type id %d not defined", id)
    	}
    	strct := wire.StructT
    	fieldNum := -1
    	indent++
    	for {
    		delta := deb.uint64()
    		if delta == 0 { // struct terminator is zero delta fieldnum
    			break
    		}
    		fieldNum += int(delta)
    		if fieldNum < 0 || fieldNum >= len(strct.Field) {
    			deb.dump("field number out of range: prevField=%d delta=%d", fieldNum-int(delta), delta)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jan 20 09:34:41 UTC 2023
    - 18.3K bytes
    - Viewed (0)
Back to top