Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for no_side_effect (0.21 sec)

  1. tensorflow/compiler/mlir/lite/quantization/lite/quantize_weights.h

    // custom op is quantized only for storage and dequantized at runtime.
    // 'no_side_effect' is used to determine whether the op can be pruned if
    // considered as trivially dead.
    struct CustomOpInfo {
      std::vector<std::int32_t> quantizable_input_indices;
      bool is_weight_only = false;
      bool no_side_effect = true;
    };
    
    using BuiltinOperatorSet = absl::flat_hash_set<tflite::BuiltinOperator>;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 23:15:24 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/quantization/lite/quantize_weights.cc

            entry.second.quantizable_input_indices;
        quant_specs.custom_map[entry.first].is_weight_only =
            entry.second.is_weight_only;
        quant_specs.custom_map[entry.first].no_side_effect =
            entry.second.no_side_effect;
      }
    
      if (quant_specs.inference_type == tensorflow::DT_INT8)
        quant_specs.inference_type = tensorflow::DT_QINT8;
    
      if (!(quant_specs.inference_type == tensorflow::DT_HALF ||
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 23:15:24 UTC 2024
    - 9.5K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/quantization/common/quantization_lib/quantization_config.cc

            custom_op_map[node_name].is_weight_only =
                GetBooleanSpecs(node_specification);
            break;
          case CustomOpUpdateOptions::kNoSideEffect:
            custom_op_map[node_name].no_side_effect =
                GetBooleanSpecs(node_specification);
            break;
        }
      }
    }
    
    bool ParseInputNodeQuantSpecs(const absl::string_view node_names,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 05 07:39:40 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/tests/tf_side_effect.mlir

    Tres Popp <******@****.***> 1648100645 -0700
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Mar 24 05:47:26 UTC 2022
    - 536 bytes
    - Viewed (0)
Back to top