Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 50 for vslo (0.08 sec)

  1. src/internal/bytealg/index_ppc64x.s

    	BGE    CR4, loadge16       // Load for len(sep) >= 16
    	SUB    R6, R16, R9         // 16-len of sep
    	SLD    $3, R9              // Set up for VSLO
    	MTVSRD R9, V9              // Set up for VSLO
    	VSLDOI $8, V9, V9, V9      // Set up for VSLO
    	VSLO   ONES, V9, SEPMASK   // Mask for separator len(sep) < 16
    
    loadge16:
    	ANDCC $15, R5, R9 // Find byte offset of sep
    	ADD   R9, R6, R10 // Add sep len
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 21 16:47:45 UTC 2023
    - 31.6K bytes
    - Viewed (0)
  2. src/cmd/internal/obj/ppc64/anames.go

    	"VPMSUMB",
    	"VPMSUMH",
    	"VPMSUMW",
    	"VPMSUMD",
    	"VMSUMUDM",
    	"VR",
    	"VRLB",
    	"VRLH",
    	"VRLW",
    	"VRLD",
    	"VS",
    	"VSLB",
    	"VSLH",
    	"VSLW",
    	"VSL",
    	"VSLO",
    	"VSRB",
    	"VSRH",
    	"VSRW",
    	"VSR",
    	"VSRO",
    	"VSLD",
    	"VSRD",
    	"VSA",
    	"VSRAB",
    	"VSRAH",
    	"VSRAW",
    	"VSRAD",
    	"VSOI",
    	"VSLDOI",
    	"VCLZ",
    	"VCLZB",
    	"VCLZH",
    	"VCLZW",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 01 18:50:29 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  3. src/cmd/asm/internal/asm/testdata/ppc64.s

    	VRLW V1, V2, V3                 // 10611084
    	VRLD V1, V2, V3                 // 106110c4
    	VSLB V1, V2, V3                 // 10611104
    	VSLH V1, V2, V3                 // 10611144
    	VSLW V1, V2, V3                 // 10611184
    	VSL V1, V2, V3                  // 106111c4
    	VSLO V1, V2, V3                 // 1061140c
    	VSRB V1, V2, V3                 // 10611204
    	VSRH V1, V2, V3                 // 10611244
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 21:53:50 UTC 2024
    - 50.2K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/arch/ppc64/ppc64asm/tables.go

    	VRLB:           "vrlb",
    	VRLH:           "vrlh",
    	VRLW:           "vrlw",
    	VRSQRTEFP:      "vrsqrtefp",
    	VSEL:           "vsel",
    	VSL:            "vsl",
    	VSLB:           "vslb",
    	VSLDOI:         "vsldoi",
    	VSLH:           "vslh",
    	VSLO:           "vslo",
    	VSLW:           "vslw",
    	VSPLTB:         "vspltb",
    	VSPLTH:         "vsplth",
    	VSPLTISB:       "vspltisb",
    	VSPLTISH:       "vspltish",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 22 17:16:14 UTC 2022
    - 334.7K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/lite/tests/flatbuffer2mlir/vhlo.mlir

    //CHECK-SAME: padding = #vhlo.tensor_v1<dense<0> : tensor<2x2xi64>>,
    //CHECK-SAME: precision_config = #vhlo.array_v1<[#vhlo<precision_v1 DEFAULT>, #vhlo<precision_v1 DEFAULT>]>,
    //CHECK-SAME: rhs_dilation = #vhlo.tensor_v1<dense<1> : tensor<2xi64>>,
    //CHECK-SAME: window_reversal = #vhlo.tensor_v1<dense<false> : tensor<2xi1>>,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Mar 14 19:15:40 UTC 2024
    - 31.9K bytes
    - Viewed (1)
  6. tensorflow/compiler/mlir/lite/stablehlo/tests/legalize-stablehlo-vhlo.mlir

    // RUN: odml-to-stablehlo-opt %s --stablehlo-legalize-vhlo -split-input-file | FileCheck %s
    // RUN: odml-to-stablehlo-opt --stablehlo-legalize-vhlo %s | odml-to-stablehlo-opt --vhlo-legalize-stablehlo > %t.0
    // RUN: odml-to-stablehlo-opt %s > %t.1
    // RUN: diff %t.0 %t.1
    
    // CHECK-LABEL: op_tfl
    func.func @op_tfl(%arg0 : tensor<f32>) -> (tensor<f32>) {
      // CHECK: %0 = tfl.add %arg0, %arg0 {fused_activation_function = "NONE"} : tensor<f32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Mar 07 22:39:35 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/lite/flatbuffer_export.cc

        else if (llvm::isa<mlir::vhlo::BooleanV1Attr>(attr))
          flex_builder->Bool(name.c_str(),
                             attr.cast<mlir::vhlo::BooleanV1Attr>().getValue());
        else if (llvm::isa<mlir::vhlo::StringV1Attr>(attr))
          flex_builder->String(
              name.c_str(), attr.cast<mlir::vhlo::StringV1Attr>().getValue().str());
        else if (llvm::isa<mlir::vhlo::IntegerV1Attr>(attr))
          flex_builder->Int(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:41:49 UTC 2024
    - 164.5K bytes
    - Viewed (0)
  8. src/cmd/internal/obj/s390x/anames.go

    	"VPDI",
    	"VPOPCT",
    	"VREP",
    	"VREPB",
    	"VREPH",
    	"VREPF",
    	"VREPG",
    	"VREPI",
    	"VREPIB",
    	"VREPIH",
    	"VREPIF",
    	"VREPIG",
    	"VSCEF",
    	"VSCEG",
    	"VSEL",
    	"VSL",
    	"VSLB",
    	"VSLDB",
    	"VSRA",
    	"VSRAB",
    	"VSRL",
    	"VSRLB",
    	"VSEG",
    	"VSEGB",
    	"VSEGH",
    	"VSEGF",
    	"VST",
    	"VSTEH",
    	"VSTEF",
    	"VSTEG",
    	"VSTEB",
    	"VSTM",
    	"VSTL",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 05 16:41:03 UTC 2023
    - 7.1K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/lite/tests/flatbuffer2mlir/vhlo_custom_call.mlir

    //CHECK-SAME: backend_config = #vhlo.string_v1<"">,
    //CHECK-SAME: call_target_name = #vhlo.string_v1<"tf.ResizeBilinear">,
    //CHECK-SAME: called_computations = #vhlo.array_v1<[]>,
    //CHECK-SAME: has_side_effect = #vhlo.bool_v1<false>,
    //CHECK-SAME: operand_layouts = #vhlo.array_v1<[]>,
    //CHECK-SAME: output_operand_aliases = #vhlo.array_v1<[]>,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Mar 14 19:15:40 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/lite/stablehlo/transforms/legalize_stablehlo_to_vhlo.cc

      void runOnOperation() override {
        // Revert the tensor types to VHLO
        auto module = getOperation();
        StablehloToOdmlTypeConverter to_vhlo_converter;
    
        // Builtin Tensor --> VHLO Tensor
        //   StableHLO --> VHLO
        //     VHLO --> Upgrade to current
        //       VHLO --> StableHLO
        //         Remove cast(tensor->vhlo) -> cast(vhlo->tensor) pattern
        if (failed(ApplyTypeConverter(module, to_vhlo_converter)) ||
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 15 19:48:51 UTC 2024
    - 12.3K bytes
    - Viewed (0)
Back to top