Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 47 of 47 for setlkw (0.2 sec)

  1. tensorflow/compiler/mlir/quantization/stablehlo/passes/quantization_patterns.cc

      Block& entry = entry_func_op->getRegion(0).front();
      for (auto [arg, arg_type, arg_loc] :
           llvm::zip_equal(entry.getArguments(), arg_types, arg_locs)) {
        arg.setType(arg_type);
        arg.setLoc(arg_loc);
      }
    }
    
    // Creates a UniformQuantize op and sets it as return op.
    // The requantize scale and zero point should be determined from the
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 03 06:04:36 UTC 2024
    - 41.7K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/_gen/ARM64Ops.go

    		{name: "STLR", argLength: 3, reg: gpstore, asm: "STLR", faultOnNilArg0: true, hasSideEffects: true},
    		{name: "STLRW", argLength: 3, reg: gpstore, asm: "STLRW", faultOnNilArg0: true, hasSideEffects: true},
    
    		// atomic exchange.
    		// store arg1 to arg0. arg2=mem. returns <old content of *arg0, memory>. auxint must be zero.
    		// LDAXR	(Rarg0), Rout
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 15:49:20 UTC 2024
    - 58.8K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/quantization/tensorflow/passes/quantize_composite_functions.cc

        return failure();
      }
    
      for (Operation& inner_op : quantized_func.getBody().front().getOperations()) {
        if (!inner_op.hasAttr(kAttrMapAttribute)) continue;
        inner_op.setLoc(main_op->getLoc());
      }
      return success();
    }
    
    // Get the corresponding quantized function name from the given function name.
    std::string GetQuantizedFunctionName(StringRef func_name,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 54.5K bytes
    - Viewed (0)
  4. src/reflect/value.go

    		*(*int64)(v.ptr) = x
    	}
    }
    
    // SetLen sets v's length to n.
    // It panics if v's Kind is not [Slice] or if n is negative or
    // greater than the capacity of the slice.
    func (v Value) SetLen(n int) {
    	v.mustBeAssignable()
    	v.mustBe(Slice)
    	s := (*unsafeheader.Slice)(v.ptr)
    	if uint(n) > uint(s.Cap) {
    		panic("reflect: slice length out of range in SetLen")
    	}
    	s.Len = n
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:17:41 UTC 2024
    - 119.9K bytes
    - Viewed (0)
  5. src/runtime/asm_386.s

    #ifdef GOOS_windows
    	CALL	runtime·wintls(SB)
    #endif
    	// set up ldt 7 to point at m0.tls
    	// ldt 1 would be fine on Linux, but on OS X, 7 is as low as we can go.
    	// the entry number is just a hint.  setldt will set up GS with what it used.
    	MOVL	$7, 0(SP)
    	LEAL	runtime·m0+m_tls(SB), AX
    	MOVL	AX, 4(SP)
    	MOVL	$32, 8(SP)	// sizeof(tls array)
    	CALL	runtime·setldt(SB)
    	RET
    
    TEXT runtime·emptyfunc(SB),0,$0-0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 15 15:45:13 UTC 2024
    - 43.1K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/tools/internal/stdlib/manifest.go

    		{"Value", Type, 4},
    	},
    	"syscall": {
    		{"(*Cmsghdr).SetLen", Method, 0},
    		{"(*DLL).FindProc", Method, 0},
    		{"(*DLL).MustFindProc", Method, 0},
    		{"(*DLL).Release", Method, 0},
    		{"(*DLLError).Error", Method, 0},
    		{"(*DLLError).Unwrap", Method, 16},
    		{"(*Filetime).Nanoseconds", Method, 0},
    		{"(*Iovec).SetLen", Method, 0},
    		{"(*LazyDLL).Handle", Method, 0},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 534.2K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/ssa/opGen.go

    			outputs: []outputInfo{
    				{0, 239}, // AX CX DX BX BP SI DI
    			},
    		},
    	},
    	{
    		name:   "SETL",
    		argLen: 1,
    		asm:    x86.ASETLT,
    		reg: regInfo{
    			outputs: []outputInfo{
    				{0, 239}, // AX CX DX BX BP SI DI
    			},
    		},
    	},
    	{
    		name:   "SETLE",
    		argLen: 1,
    		asm:    x86.ASETLE,
    		reg: regInfo{
    			outputs: []outputInfo{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 15:49:20 UTC 2024
    - 1M bytes
    - Viewed (0)
Back to top