Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 25 of 25 for interop (0.17 sec)

  1. tensorflow/compiler/mlir/quantization/stablehlo/tests/passes/quantize/quantize_same_scale.mlir

        %8 = "quantfork.dcast"(%7) : (tensor<!quant.uniform<i8:f32, 0.13170163023705575:-1>>) -> tensor<f32>
        %9 = stablehlo.pad %6, %8, low = [0, 1], high = [2, 1], interior = [0, 2] : (tensor<1x3xf32>, tensor<f32>) -> tensor<3x9xf32>
        %10 = "quantfork.qcast"(%9) {volatile} : (tensor<3x9xf32>) -> tensor<3x9x!quant.uniform<i8:f32, 0.13170163023705575:-1>>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 14 17:10:32 UTC 2024
    - 35.4K bytes
    - Viewed (0)
  2. src/go/ast/ast.go

    		// Walk lines, stripping trailing white space and adding to list.
    		for _, l := range cl {
    			lines = append(lines, stripTrailingWhitespace(l))
    		}
    	}
    
    	// Remove leading blank lines; convert runs of
    	// interior blank lines to a single blank line.
    	n := 0
    	for _, line := range lines {
    		if line != "" || n > 0 && lines[n-1] != "" {
    			lines[n] = line
    			n++
    		}
    	}
    	lines = lines[0:n]
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 28 21:32:41 UTC 2024
    - 35.6K bytes
    - Viewed (0)
  3. src/syscall/syscall_linux.go

    		word := *((*uintptr)(unsafe.Pointer(&buf[0])))
    		err = ptrace(pokeReq, pid, addr-addr%sizeofPtr, word)
    		if err != nil {
    			return 0, err
    		}
    		data = data[n:]
    	}
    
    	// Interior.
    	for len(data) > sizeofPtr {
    		word := *((*uintptr)(unsafe.Pointer(&data[0])))
    		err = ptrace(pokeReq, pid, addr+uintptr(n), word)
    		if err != nil {
    			return n, err
    		}
    		n += sizeofPtr
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 20:12:46 UTC 2024
    - 35.7K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/rangefunc/rewrite.go

    		// Unlabeled break or continue that's not nfor must be inside nfor. Leave alone.
    		return x
    	}
    	for i >= 0 && r.forStack[i].nfor != targ {
    		i--
    	}
    	// exitFrom is the index of the loop interior to the target of the control flow,
    	// if such a loop exists (it does not if i == len(r.forStack) - 1)
    	exitFrom := i + 1
    
    	// Compute the value to assign to #next and the specific return to use.
    	var next int
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:05:44 UTC 2024
    - 41.6K bytes
    - Viewed (0)
  5. src/runtime/runtime2.go

    	// or retake the P. Note that there's an ABA hazard: even if
    	// an M successfully CASes its original P back to _Prunning
    	// after a syscall, it must understand the P may have been
    	// used by another M in the interim.
    	_Psyscall
    
    	// _Pgcstop means a P is halted for STW and owned by the M
    	// that stopped the world. The M that stopped the world
    	// continues to use its P, even in _Pgcstop. Transitioning
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:57:37 UTC 2024
    - 47.9K bytes
    - Viewed (0)
Back to top