Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 149 for Malloc (0.11 sec)

  1. pilot/pkg/security/authz/builder/testdata/http/allow-path-out.yaml

    Jackie Elliott <******@****.***> 1713578333 -0700
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Apr 20 01:58:53 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/quantization/stablehlo/passes/quantization_patterns.cc

      // Create a new `CallOp` that calls `callee_func_op`.
      rewriter.setInsertionPoint(xla_call_module_op);
      auto call_op =
          rewriter.create<func::CallOp>(xla_call_module_op.getLoc(), callee_func_op,
                                        xla_call_module_op.getArgs());
    
      // Transfer the `kQuantizationMethodAttr` attribute to the `CallOp`,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 03 06:04:36 UTC 2024
    - 41.7K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/quantization/stablehlo/passes/merge_fusion_with_dequantize.cc

      void runOnOperation() override;
    };
    
    class MergeFusionWithUniformDequantizePattern
        : public OpRewritePattern<func::CallOp> {
     public:
      explicit MergeFusionWithUniformDequantizePattern(MLIRContext* context)
          : OpRewritePattern<func::CallOp>(context) {}
      LogicalResult matchAndRewrite(func::CallOp call_op,
                                    PatternRewriter& rewriter) const override {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  4. pilot/pkg/security/authz/builder/testdata/http/allow-path-in.yaml

    Jackie Elliott <******@****.***> 1713578333 -0700
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Apr 20 01:58:53 UTC 2024
    - 454 bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/quantization/stablehlo/cc/report.cc

    // the quantization passes, quantized ops are represented as `func::CallOp` with
    // a callee's prefix of `quantized_`.
    void PopulateQuantizedResults(ModuleOp module_op,
                                  QuantizationResults& results) {
      module_op.walk([&results](func::CallOp call_op) {
        std::optional<QuantizationResult> result = GetQuantizationResult(call_op);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 6.8K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/transforms/region_control_flow_to_functional.cc

        it++;
        if (it == block.rend()) return std::nullopt;
      }
    
      // Check if there is a Call before the Yield.
      func::CallOp call = dyn_cast<func::CallOp>(*it++);
      if (!call) return std::nullopt;
    
      if (allow_to_bool && call.getNumResults() == 1 &&
          yield->getNumOperands() != 1) {
        // Allow patterns of the form
        // %cond = call(...)
        // yield %cond, [...passthrough args...]
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 28.7K bytes
    - Viewed (0)
  7. tensorflow/compiler/jit/xla_platform_info.cc

      }
      auto* alloc = device->GetAllocator({});
      if (!stream) {
        // Stream is not set for the host platform.
        se::Platform* platform =
            se::PlatformManager::PlatformWithId(platform_info.platform_id())
                .value();
        return std::make_shared<se::TfAllocatorAdapter>(alloc, platform);
      }
      return std::make_shared<se::TfAllocatorAdapter>(alloc, stream);
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 17:23:27 UTC 2024
    - 17.4K bytes
    - Viewed (0)
  8. src/runtime/race_arm64.s

    	JMP	runtime·raceread(SB)
    
    // func runtime·racereadpc(void *addr, void *callpc, void *pc)
    TEXT	runtime·racereadpc(SB), NOSPLIT, $0-24
    	MOVD	addr+0(FP), R1
    	MOVD	callpc+8(FP), R2
    	MOVD	pc+16(FP), R3
    	// void __tsan_read_pc(ThreadState *thr, void *addr, void *callpc, void *pc);
    	MOVD	$__tsan_read_pc(SB), R9
    	JMP	racecalladdr<>(SB)
    
    // func runtime·racewrite(addr uintptr)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:37:29 UTC 2024
    - 15.5K bytes
    - Viewed (0)
  9. pilot/pkg/security/authz/builder/testdata/http/allow-full-rule-in.yaml

    Jackie Elliott <******@****.***> 1713578333 -0700
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Apr 20 01:58:53 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  10. src/runtime/race_ppc64le.s

    TEXT    runtime·RaceRead(SB), NOSPLIT, $0-8
    	BR	runtime·raceread(SB)
    
    // void runtime·racereadpc(void *addr, void *callpc, void *pc)
    TEXT	runtime·racereadpc(SB), NOSPLIT, $0-24
    	MOVD	addr+0(FP), R4
    	MOVD	callpc+8(FP), R5
    	MOVD	pc+16(FP), R6
    	// void __tsan_read_pc(ThreadState *thr, void *addr, void *callpc, void *pc);
    	MOVD	$__tsan_read_pc(SB), R8
    	BR	racecalladdr<>(SB)
    
    // func runtime·RaceWrite(addr uintptr)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:37:29 UTC 2024
    - 17K bytes
    - Viewed (0)
Back to top