Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 20 for isBreak (0.13 sec)

  1. tensorflow/compiler/mlir/tensorflow/transforms/resource_op_lifting.cc

          auto write = dyn_cast<TF::AssignVariableOp>(user);
          if (!read && !write) {
            unsupported_use = true;
            break;
          }
    
          if (read && !info.is_read) {
            info.is_read = true;
            info.RefineType(read.getValue().getType());
            info.read_attrs = user->getAttrDictionary();
          }
    
          if (write) {
            info.is_written = true;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/transforms/convert_control_to_data_outputs.cc

            solver.lookupState<TF::IsCompositeDataflowState>(arg.get())->getValue();
        bool is_read = read_array.contains(arg.getOperandNumber());
        bool is_update = update_array.contains(arg.getOperandNumber());
        // We want the resource operands that are on composite devices to be the
        // exact same set as the resource operands that are read or updated.
        if ((is_read || is_update) != lattice.is_on_composite_device) {
          return false;
        }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 28.7K bytes
    - Viewed (0)
  3. src/cmd/internal/obj/riscv/cpu.go

    	// 3.1.9: Instructions to Access CSRs
    	ACSRRW
    	ACSRRS
    	ACSRRC
    	ACSRRWI
    	ACSRRSI
    	ACSRRCI
    
    	// 3.2.1: Environment Call and Breakpoint
    	AECALL
    	ASCALL
    	AEBREAK
    	ASBREAK
    
    	// 3.2.2: Trap-Return Instructions
    	AMRET
    	ASRET
    	ADRET
    
    	// 3.2.3: Wait for Interrupt
    	AWFI
    
    	// 4.2.1: Supervisor Memory-Management Fence Instruction
    	ASFENCEVMA
    
    	//
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 20 14:19:33 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/analysis/side_effect_analysis.cc

      bool IsAlloc() const { return effects_.test(kAlloc); }
      bool IsFree() const { return effects_.test(kFree); }
      bool IsRead() const { return effects_.test(kRead); }
      bool IsWrite() const { return effects_.test(kWrite); }
      bool IsAllocOnly() const { return IsAlloc() && effects_.count() == 1; }
      bool IsReadOnly() const { return IsRead() && effects_.count() == 1; }
      ResourceId GetResourceId() const { return resource_id_; }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 15 09:04:13 UTC 2024
    - 41.2K bytes
    - Viewed (0)
  5. src/cmd/internal/obj/riscv/inst.go

    	case ARORIW:
    		return &inst{0x1b, 0x5, 0x0, 1536, 0x30}
    	case ARORW:
    		return &inst{0x3b, 0x5, 0x0, 1536, 0x30}
    	case ASB:
    		return &inst{0x23, 0x0, 0x0, 0, 0x0}
    	case ASBREAK:
    		return &inst{0x73, 0x0, 0x1, 1, 0x0}
    	case ASCD:
    		return &inst{0x2f, 0x3, 0x0, 384, 0xc}
    	case ASCW:
    		return &inst{0x2f, 0x2, 0x0, 384, 0xc}
    	case ASCALL:
    		return &inst{0x73, 0x0, 0x0, 0, 0x0}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 20 14:19:33 UTC 2024
    - 13.9K bytes
    - Viewed (0)
  6. src/cmd/asm/internal/asm/testdata/riscv64.s

    	BSETI	$1, X10, X11				// 93151528
    
    	// Privileged ISA
    
    	// 3.2.1: Environment Call and Breakpoint
    	ECALL						// 73000000
    	SCALL						// 73000000
    	EBREAK						// 73001000
    	SBREAK						// 73001000
    
    	// Arbitrary bytes (entered in little-endian mode)
    	WORD	$0x12345678	// WORD $305419896	// 78563412
    	WORD	$0x9abcdef0	// WORD $2596069104	// f0debc9a
    
    	// MOV pseudo-instructions
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 22 04:42:21 UTC 2024
    - 16.7K bytes
    - Viewed (0)
  7. analysis/analysis-api-fe10/src/org/jetbrains/kotlin/analysis/api/descriptors/symbols/descriptorBased/base/Kt1DescUtils.kt

        val useSiteUnwrapped = unwrapUseSiteSubstitutionOverride()
        if (useSiteUnwrapped !is CallableMemberDescriptor) return useSiteUnwrapped
        if (useSiteUnwrapped.kind.isReal) return useSiteUnwrapped
        val overriddenDescriptor = useSiteUnwrapped.overriddenDescriptors.singleOrNull()?.unwrapUseSiteSubstitutionOverride()
            ?: return useSiteUnwrapped
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:42 UTC 2024
    - 33.4K bytes
    - Viewed (0)
  8. src/cmd/internal/obj/riscv/obj.go

    			ctxt.Diag("unknown destination type %+v in CALL: %v", p.To.Type, p)
    		}
    
    	case obj.AUNDEF:
    		p.As = AEBREAK
    
    	case ASCALL:
    		// SCALL is the old name for ECALL.
    		p.As = AECALL
    
    	case ASBREAK:
    		// SBREAK is the old name for EBREAK.
    		p.As = AEBREAK
    
    	case AMOV:
    		if p.From.Type == obj.TYPE_CONST && p.From.Name == obj.NAME_NONE && p.From.Reg == obj.REG_NONE && int64(int32(p.From.Offset)) != p.From.Offset {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Apr 07 03:32:27 UTC 2024
    - 77K bytes
    - Viewed (0)
  9. src/runtime/mpagealloc.go

    		// run of consecutive pages.
    		var base, size uint
    		for j := j0; j < len(entries); j++ {
    			sum := entries[j]
    			if sum == 0 {
    				// A full entry means we broke any streak and
    				// that we should skip it altogether.
    				size = 0
    				continue
    			}
    
    			// We've encountered a non-zero summary which means
    			// free memory, so update firstFree.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 39.2K bytes
    - Viewed (0)
  10. src/cmd/vendor/github.com/ianlancetaylor/demangle/demangle.go

    	'b': &Qualified{Scope: &Name{Name: "std"}, Name: &Name{Name: "basic_string"}},
    	's': &Qualified{Scope: &Name{Name: "std"}, Name: &Name{Name: "string"}},
    	'i': &Qualified{Scope: &Name{Name: "std"}, Name: &Name{Name: "istream"}},
    	'o': &Qualified{Scope: &Name{Name: "std"}, Name: &Name{Name: "ostream"}},
    	'd': &Qualified{Scope: &Name{Name: "std"}, Name: &Name{Name: "iostream"}},
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 94.1K bytes
    - Viewed (0)
Back to top