Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 139 for call_op (0.09 sec)

  1. tensorflow/compiler/mlir/tfr/utils/utils.cc

        }
      }
      return success();
    }
    
    LogicalResult CopyNonSymbolRefAttrs(CallOp src, Operation* dst) {
      NamedAttrList attrs;
      CollectAllowedAttrs(src, &attrs);
    
      for (auto& attr : attrs) {
        dst->setAttr(attr.getName(), attr.getValue());
      }
    
      return success();
    }
    
    void PropagateAttrsToOperations(CallOp src, Block::iterator begin,
                                    Block::iterator end) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 06 03:08:33 UTC 2023
    - 6.2K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/quantization/stablehlo/passes/xla_call_module_to_call.cc

        auto entry_func_op = dyn_cast_or_null<func::FuncOp>(
            symbol_table.lookup(GetEntryFunctionName(op)));
        if (!entry_func_op) return failure();
    
        // Replace the XlaCallModuleOp with a new CallOp.
        rewriter.replaceOpWithNewOp<func::CallOp>(op, entry_func_op, op.getArgs());
        return success();
      }
    };
    
    void XlaCallModuleToCallPass::runOnOperation() {
      ModuleOp module_op = getOperation();
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 04 20:02:00 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  3. src/cmd/cgo/internal/test/issue5548_c.c

    static void clobber_stack() {
    	volatile char a[1024];
    	int i;
    	for(i = 0; i < sizeof a; i++)
    		a[i] = 0xff;
    }
    
    static int call_go() {
    	GoString s;
    	s.p = "test";
    	s.n = 4;
    	return issue5548FromC(s, 42);
    }
    
    int issue5548_in_c() {
    	clobber_stack();
    	return call_go();
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 12 12:00:02 UTC 2023
    - 454 bytes
    - Viewed (0)
  4. analysis/analysis-api/testData/components/compilerFacility/compilation/codeFragments/capturing/nestedOuterClass.kt

                <caret_context>val x = 0
            }
        }
    }
    
    fun callFoo(foo: Foo): Int {
        return 0
    }
    
    fun callString(string: String): Int {
        return 1
    }
    
    
    // MODULE: main
    // MODULE_KIND: CodeFragment
    // CONTEXT_MODULE: context
    
    // FILE: fragment.kt
    // CODE_FRAGMENT_KIND: EXPRESSION
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jan 30 11:41:26 UTC 2024
    - 502 bytes
    - Viewed (0)
  5. src/internal/runtime/atomic/atomic_386.s

    TEXT ·And32(SB), NOSPLIT, $0-12
    	MOVL	ptr+0(FP), BX
    	MOVL	val+4(FP), CX
    casloop:
    	MOVL 	CX, DX
    	MOVL	(BX), AX
    	ANDL	AX, DX
    	LOCK
    	CMPXCHGL	DX, (BX)
    	JNZ casloop
    	MOVL 	AX, ret+8(FP)
    	RET
    
    // func Or32(addr *uint32, v uint32) old uint32
    TEXT ·Or32(SB), NOSPLIT, $0-12
    	MOVL	ptr+0(FP), BX
    	MOVL	val+4(FP), CX
    casloop:
    	MOVL 	CX, DX
    	MOVL	(BX), AX
    	ORL	AX, DX
    	LOCK
    	CMPXCHGL	DX, (BX)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 6.5K bytes
    - Viewed (0)
  6. src/main/java/jcifs/smb1/dcerpc/DcerpcMessage.java

    import jcifs.smb1.dcerpc.ndr.*;
    
    public abstract class DcerpcMessage extends NdrObject implements DcerpcConstants {
    
        protected int ptype = -1;
        protected int flags = 0;
        protected int length = 0;
        protected int call_id = 0;
        protected int alloc_hint = 0;
        protected int result = 0;
    
        public boolean isFlagSet(int flag) {
            return (flags & flag) == flag;
        }
        public void unsetFlag(int flag) {
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Fri Mar 22 20:39:42 UTC 2019
    - 4.2K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/analysis/side_effect_analysis.cc

      // only executes ops with no side effects.
      mutable llvm::SmallDenseMap<Operation*, bool> is_pure_function_;
    };
    
    bool OpSideEffectCollector::IsCallToPureFunction(Operation* callOp) const {
      auto call = llvm::dyn_cast<CallOpInterface>(callOp);
      if (!call)
        return false;  // not a call
      func::FuncOp func_op = dyn_cast<func::FuncOp>(call.resolveCallable(
          &symbol_table_collection_));
      return IsPureFunction(func_op);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 15 09:04:13 UTC 2024
    - 41.2K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tfr/ir/tfr_ops.cc

        rewriter.replaceOpWithNewOp<TFR::ConstOp>(bl_op, array_attr);
        return success();
      }
    };
    
    quant::QuantizedType getQuantizedElementType(CastOp cast_op) {
      if (!cast_op || !cast_op.getInputElementType()) {
        return {};
      }
      return cast_op.getInputElementType()
          .cast<TypeAttr>()
          .getValue()
          .dyn_cast<quant::QuantizedType>();
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Nov 21 16:55:41 UTC 2023
    - 38.2K bytes
    - Viewed (0)
  9. src/main/java/jcifs/dcerpc/DcerpcMessage.java

    
    /**
     * 
     */
    public abstract class DcerpcMessage extends NdrObject implements DcerpcConstants {
    
        protected int ptype = -1;
        protected int flags = 0;
        protected int length = 0;
        protected int call_id = 0;
        protected int alloc_hint = 0;
        protected int result = 0;
    
    
        /**
         * 
         * @param flag
         * @return whether flag is set
         */
        public boolean isFlagSet ( int flag ) {
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 5K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/transforms/tensor_array_ops_decomposition.cc

        }
        if_op.getResult(i).replaceAllUsesWith(
            if_op.getOperand(then_forward_input + 1));
      }
      if_op.erase();
      return success();
    }
    
    template <typename CallOp>
    LogicalResult HandlePartitionedCallOp(
        CallOp call, func::FuncOp callee, ModuleOp module,
        llvm::SmallDenseMap<Value, TensorArrayStats>* stats,
        llvm::StringMap<PartitionedCallTensorArrayOpsInfo>*
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Mar 02 20:41:19 UTC 2023
    - 40.2K bytes
    - Viewed (0)
Back to top