Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 54 for map_64 (0.12 sec)

  1. tensorflow/compiler/mlir/tfrt/tests/mlrt/tpu_conversions.mlir

      func.return %1, %2 : tensor<i32>, tensor<i32>
    }
    
    // -----
    
    // Test the output from TPU op is properly awaited before its use by map_fn.
    // CHECK-LABEL: @main
    // CHECK-SAME: ([[input0:%.*]]: !tf_mlrt.tensor, [[input1:%.*]]: !tf_mlrt.tensor)
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Oct 04 21:25:31 UTC 2023
    - 11K bytes
    - Viewed (0)
  2. src/index/suffixarray/sais.go

    // and change ID into ID-1 (our IDs start at 1, but text chars start at 0).
    //
    // map_32 packs the result, which is the input to the recursion,
    // into the top of sa, so that the recursion result can be stored
    // in the bottom of sa, which sets up for expand_8_32 well.
    func map_32(sa []int32, numLMS int) {
    	w := len(sa)
    	for i := len(sa) / 2; i >= 0; i-- {
    		j := sa[i]
    		if j > 0 {
    			w--
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 18 23:57:18 UTC 2024
    - 32.4K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssa/_gen/MIPS64Ops.go

    		// moves (no conversion)
    		{name: "MOVWfpgp", argLength: 1, reg: fpgp, asm: "MOVW"}, // move float32 to int32 (no conversion). MIPS64 will perform sign-extend to 64-bit by default
    		{name: "MOVWgpfp", argLength: 1, reg: gpfp, asm: "MOVW"}, // move int32 to float32 (no conversion). MIPS64 will perform sign-extend to 64-bit by default
    		{name: "MOVVfpgp", argLength: 1, reg: fpgp, asm: "MOVV"}, // move float64 to int64 (no conversion).
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 24 03:36:31 UTC 2023
    - 25.5K bytes
    - Viewed (0)
  4. src/runtime/slice.go

    		}
    		panicmakeslicecap()
    	}
    
    	return mallocgc(mem, et, true)
    }
    
    func makeslice64(et *_type, len64, cap64 int64) unsafe.Pointer {
    	len := int(len64)
    	if int64(len) != len64 {
    		panicmakeslicelen()
    	}
    
    	cap := int(cap64)
    	if int64(cap) != cap64 {
    		panicmakeslicecap()
    	}
    
    	return makeslice(et, len, cap)
    }
    
    // growslice allocates new backing store for a slice.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/types2/builtins.go

    		}
    		x.mode = value
    		x.typ = Typ[Int]
    
    	case _Delete:
    		// delete(map_, key)
    		// map_ must be a map type or a type parameter describing map types.
    		// The key cannot be a type parameter for now.
    		map_ := x.typ
    		var key Type
    		if !underIs(map_, func(u Type) bool {
    			map_, _ := u.(*Map)
    			if map_ == nil {
    				check.errorf(x, InvalidDelete, invalidArg+"%s is not a map", x)
    				return false
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 27.1K bytes
    - Viewed (0)
  6. src/cmd/asm/internal/asm/endtoend_test.go

    }
    
    func TestAMD64DynLinkErrors(t *testing.T) {
    	testErrors(t, "amd64", "amd64dynlinkerror", "dynlink")
    }
    
    func TestMIPSEndToEnd(t *testing.T) {
    	testEndToEnd(t, "mips", "mips")
    	testEndToEnd(t, "mips64", "mips64")
    }
    
    func TestLOONG64Encoder(t *testing.T) {
    	testEndToEnd(t, "loong64", "loong64enc1")
    	testEndToEnd(t, "loong64", "loong64enc2")
    	testEndToEnd(t, "loong64", "loong64enc3")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Dec 07 18:42:59 UTC 2023
    - 11.6K bytes
    - Viewed (0)
  7. src/vendor/golang.org/x/sys/cpu/cpu.go

    	HasCRC32    bool // CRC32 hardware implementation
    	_           CacheLinePad
    }
    
    // MIPS64X contains the supported CPU features of the current mips64/mips64le
    // platforms. If the current platform is not mips64/mips64le or the current
    // operating system is not Linux then all feature flags are false.
    var MIPS64X struct {
    	_      CacheLinePad
    	HasMSA bool // MIPS SIMD architecture
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/sys/unix/zerrors_linux_mips64.go

    // mkerrors.sh -Wall -Werror -static -I/tmp/mips64/include
    // Code generated by the command above; see README.md. DO NOT EDIT.
    
    //go:build mips64 && linux
    
    // Code generated by cmd/cgo -godefs; DO NOT EDIT.
    // cgo -godefs -- -Wall -Werror -static -I/tmp/mips64/include _const.go
    
    package unix
    
    import "syscall"
    
    const (
    	B1000000                         = 0x1008
    	B115200                          = 0x1002
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 22 19:00:13 UTC 2024
    - 34.7K bytes
    - Viewed (0)
  9. src/runtime/sys_linux_mips64x.s

    // Copyright 2015 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    //go:build linux && (mips64 || mips64le)
    
    //
    // System calls and other sys.stuff for mips64, Linux
    //
    
    #include "go_asm.h"
    #include "go_tls.h"
    #include "textflag.h"
    
    #define AT_FDCWD -100
    
    #define SYS_exit		5058
    #define SYS_read		5000
    #define SYS_write		5001
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 18 20:57:24 UTC 2022
    - 12K bytes
    - Viewed (0)
  10. src/cmd/internal/obj/mips/obj0.go

    			p.From.Name = obj.NAME_EXTERN
    			p.From.Offset = 0
    		}
    
    	case AMOVD:
    		if p.From.Type == obj.TYPE_FCONST {
    			f64 := p.From.Val.(float64)
    			if math.Float64bits(f64) == 0 && c.ctxt.Arch.Family == sys.MIPS64 {
    				p.As = AMOVV
    				p.From.Type = obj.TYPE_REG
    				p.From.Reg = REGZERO
    				break
    			}
    			p.From.Type = obj.TYPE_MEM
    			p.From.Sym = ctxt.Float64Sym(f64)
    			p.From.Name = obj.NAME_EXTERN
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 21 19:28:53 UTC 2023
    - 30.6K bytes
    - Viewed (0)
Back to top