Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 34 of 34 for XlaCallModule (0.59 sec)

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

      // TODO(b/154065712): Remove propagate_caller_callee_constants once using
      // SCCP pass instead.
      bool propagate_caller_callee_constants_;
    
      // XlaCallModule loader, which is used to deserialize the StableHLO module in
      // each `XlaCallModule` op. Uses its own MLIRContext since the loader needs to
      // load additional dialects, which is not allowed for the main context since
      // shape inference may be called from a pass.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Jun 08 07:28:49 UTC 2024
    - 134.1K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/quantization/tensorflow/python/integration_test/quantize_model_test.py

          # This is to verify the invocation of StableHLO quantizer works. More
          # thorough functional tests are in StableHLO quantizer directory.
          self.assertTrue(self._contains_op(output_graphdef, 'XlaCallModule'))
        else:
          self.assertTrue(self._contains_quantized_function_call(output_graphdef))
        self.assertFalse(self._contains_op(output_graphdef, 'FusedBatchNormV3'))
    
      @parameterized.named_parameters(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 17 03:36:50 UTC 2024
    - 235.6K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/ir/tf_ops_n_z.cc

    void XlaCallModuleOp::getEffects(
        SmallVectorImpl<SideEffects::EffectInstance<MemoryEffects::Effect>>
            &effects) {
      if (!getFunctionList().empty()) {
        // The StableHLO module embedded in XlaCallModule contains
        // `stablehlo.custom_call` calling TF host callback functions.
        // `stablehlo.custom_call` will be lowered to `stablehlo.send` and
        // `stablehlo.recv`.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 09 22:07:10 UTC 2024
    - 170.8K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/ir/tf_generated_ops.td

        // InferTypeOpInterface:
        static bool isCompatibleReturnTypes(TypeRange l, TypeRange r) {
          return ArraysAreCastCompatible(l, r);
        }
      }];
    }
    
    def TF_XlaCallModuleOp : TF_Op<"XlaCallModule", [DeclareOpInterfaceMethods<MemoryEffectsOpInterface>, DeclareOpInterfaceMethods<SymbolUserOpInterface>]> {
      let summary = "Invokes a StableHLO module.";
    
      let description = [{
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 23:24:08 UTC 2024
    - 793K bytes
    - Viewed (0)
Back to top