Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 20 for map_64 (0.11 sec)

  1. src/index/suffixarray/sais2.go

    		induceSubL_64(text, sa, freq, bucket)
    		induceSubS_64(text, sa, freq, bucket)
    		length_64(text, sa, numLMS)
    		maxID := assignID_64(text, sa, numLMS)
    		if maxID < numLMS {
    			map_64(sa, numLMS)
    			recurse_64(sa, tmp, numLMS, maxID)
    			unmap_64(text, sa, numLMS)
    		} else {
    			// If maxID == numLMS, then each LMS-substring
    			// is unique, so the relative ordering of two LMS-suffixes
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 18 23:57:18 UTC 2024
    - 52.3K bytes
    - Viewed (0)
  2. src/cmd/internal/obj/mips/asm0.go

    	{AMOVWU, C_SEXT, C_NONE, C_REG, 8, 4, REGSB, sys.MIPS64, 0},
    	{AMOVV, C_SEXT, C_NONE, C_REG, 8, 4, REGSB, sys.MIPS64, 0},
    	{AMOVB, C_SEXT, C_NONE, C_REG, 8, 4, REGSB, sys.MIPS64, 0},
    	{AMOVBU, C_SEXT, C_NONE, C_REG, 8, 4, REGSB, sys.MIPS64, 0},
    	{AMOVWL, C_SEXT, C_NONE, C_REG, 8, 4, REGSB, sys.MIPS64, 0},
    	{AMOVVL, C_SEXT, C_NONE, C_REG, 8, 4, REGSB, sys.MIPS64, 0},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 16 17:46:09 UTC 2024
    - 53.6K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tfrt/tests/mlrt/while_to_map_fn.mlir

    // RUN: tf-tfrt-opt -split-input-file -tf-mlrt-while-to-map-fn %s | FileCheck %s
    
    // Test a while to map_fn conversion in which the max iteration is hard coded inside the predicate body.
    
    // CHECK-LABEL: map/while_cond
    func.func private @"map/while_cond"(%arg0: tensor<i32>, %arg1: tensor<i32>, %arg2: tensor<!tf_type.variant<tensor<*xf32>>>, %arg3: tensor<?xf32>) -> tensor<i1> {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 23 06:40:22 UTC 2024
    - 68.6K bytes
    - Viewed (0)
  4. src/cmd/dist/build.go

    	noOpt      bool
    	isRelease  bool
    
    	vflag int // verbosity
    )
    
    // The known architectures.
    var okgoarch = []string{
    	"386",
    	"amd64",
    	"arm",
    	"arm64",
    	"loong64",
    	"mips",
    	"mipsle",
    	"mips64",
    	"mips64le",
    	"ppc64",
    	"ppc64le",
    	"riscv64",
    	"s390x",
    	"sparc64",
    	"wasm",
    }
    
    // The known operating systems.
    var okgoos = []string{
    	"darwin",
    	"dragonfly",
    	"illumos",
    	"ios",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 18:34:40 UTC 2024
    - 54K bytes
    - Viewed (0)
  5. guava-tests/test/com/google/common/collect/MapsTest.java

        Map<Object, Integer> map3 = ImmutableMap.<Object, Integer>of(1, 2);
        Map<Number, Object> map4 = ImmutableMap.<Number, Object>of(1, 2);
        Map<Number, Number> map5 = ImmutableMap.<Number, Number>of(1, 2);
        Map<Number, Integer> map6 = ImmutableMap.<Number, Integer>of(1, 2);
        Map<Integer, Object> map7 = ImmutableMap.<Integer, Object>of(1, 2);
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 17 15:27:58 UTC 2024
    - 67.1K bytes
    - Viewed (0)
  6. tensorflow/BUILD

        },
        visibility = ["//visibility:public"],
    )
    
    config_setting(
        name = "android_mips64",
        values = {
            "crosstool_top": "//external:android/crosstool",
            "cpu": "mips64",
        },
        visibility = ["//visibility:public"],
    )
    
    # TODO(jakeharmon8): Remove in favor of TSL version
    config_setting(
        name = "windows",
        # Internal builds query the target OS.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 31 16:51:59 UTC 2024
    - 53.5K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/sys/unix/zerrors_aix_ppc64.go

    // mkerrors.sh -maix64
    // Code generated by the command above; see README.md. DO NOT EDIT.
    
    //go:build ppc64 && aix
    
    // Code generated by cmd/cgo -godefs; DO NOT EDIT.
    // cgo -godefs -- -maix64 _const.go
    
    package unix
    
    import "syscall"
    
    const (
    	AF_APPLETALK                  = 0x10
    	AF_BYPASS                     = 0x19
    	AF_CCITT                      = 0xa
    	AF_CHAOS                      = 0x5
    	AF_DATAKIT                    = 0x9
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 52.7K bytes
    - Viewed (0)
  8. src/cmd/link/internal/ld/elf.go

    			ehdr.Flags = 1 /* Version 1 ABI */
    		} else {
    			ehdr.Flags = 2 /* Version 2 ABI */
    		}
    		fallthrough
    	case sys.AMD64, sys.ARM64, sys.Loong64, sys.MIPS64, sys.RISCV64:
    		if ctxt.Arch.Family == sys.MIPS64 {
    			ehdr.Flags = 0x20000004 /* MIPS 3 CPIC */
    		}
    		if ctxt.Arch.Family == sys.Loong64 {
    			ehdr.Flags = 0x43 /* DOUBLE_FLOAT, OBJABI_V1 */
    		}
    		if ctxt.Arch.Family == sys.RISCV64 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 22 13:29:54 UTC 2024
    - 63.6K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/lite/transforms/lower_static_tensor_list.cc

      // `map_fn` will trace upwards along the use-def chain of the ssa value. It
      // starts from the last ssa value (returned by the function), and check its
      // parent op iteratively. If the root ssa value appears in the function's
      // argument list, it will return the index of the corresponding argument,
      // otherwise it will return -1.
      auto map_fn = [](Value value) -> int {
        Value parent = value;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 20:00:43 UTC 2024
    - 70.7K bytes
    - Viewed (0)
  10. src/cmd/link/internal/ld/lib.go

    			args := append(args, "-maix64", "--print-file-name="+file)
    			out, err := exec.Command(name, args...).CombinedOutput()
    			if err != nil {
    				log.Fatalf("running %s failed: %v\n%s", extld, err, out)
    			}
    			return strings.Trim(string(out), "\n")
    		}
    		// Since GCC version 11, the 64-bit version of GCC starting files
    		// are now suffixed by "_64". Even under "-maix64" multilib directory
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 18:45:27 UTC 2024
    - 88.6K bytes
    - Viewed (0)
Back to top