Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for resize_if_index_out_of_bounds (0.6 sec)

  1. tensorflow/compiler/mlir/lite/transforms/lower_static_tensor_list.cc

               llvm::all_of(op->getResultTypes(), is_not_variant);
      };
    
      auto is_set_item_legal = [](Operation *op) {
        return op->hasAttr("resize_if_index_out_of_bounds") &&
               op->getAttr("resize_if_index_out_of_bounds")
                   .cast<mlir::BoolAttr>()
                   .getValue();
      };
    
      ConversionTarget target(*context);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 20:00:43 UTC 2024
    - 70.7K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/ir/tf_generated_ops.td

      let summary = "";
    
      let arguments = (ins
        TF_VariantTensor:$input_handle,
        TF_Int32Tensor:$index,
        TF_Tensor:$item,
    
        DefaultValuedOptionalAttr<BoolAttr, "false">:$resize_if_index_out_of_bounds
      );
    
      let results = (outs
        TF_VariantTensor:$output_handle
      );
    
      TF_DerivedOperandTypeAttr element_dtype = TF_DerivedOperandTypeAttr<2>;
    }
    
    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