Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 14 for eraseOp (0.12 sec)

  1. tensorflow/compiler/mlir/lite/stablehlo/transforms/compose_uniform_quantized_type_pass.cc

        // Erase unused ops in the reverse order.
        rewriter.eraseOp(output_uniform_dequantize_call_op);
        rewriter.eraseOp(output_uniform_quantize_call_op);
        rewriter.eraseOp(combined_scale_multiply_op);
        rewriter.eraseOp(subtract_op);
        rewriter.eraseOp(other_conv_op);
        rewriter.eraseOp(op);
        rewriter.eraseOp(input_i8_to_f32_convert_op);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 64.6K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/transforms/resource_op_lifting.cc

          }
    
          read_variable_op.erase();
          continue;
        }
    
        if (auto assign_variable_op = dyn_cast<TF::AssignVariableOp>(&op)) {
          Value resource = assign_variable_op.getResource();
          auto last_store = resource_handle_to_last_store_op[resource];
          // Previous store ops to same resource can be erased.
          if (last_store) last_store.erase();
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tf2xla/internal/passes/extract_outside_compilation.cc

      // Remove unused message identification ops.
      if (communication_key_index == 0)
        for (auto op : compilation_key_ops) op->erase();
      if (communication_key_index == 0 || core_to_device_ordinal.empty())
        for (auto op : core_to_device_ordinal_op) op->erase();
    
      for (mlir::tf_device::LaunchOp tmp_host_launch_op : core_to_tmp_launch)
        RemoveOutsideCompilation(tmp_host_launch_op);
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 30 21:25:12 UTC 2024
    - 68.3K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssa/regalloc.go

    		}
    	}
    	if e.s.f.pass.debug > regDebug {
    		fmt.Printf("%s\n", c.LongString())
    		fmt.Printf("v%d now available in %s:%s\n", vid, loc, c)
    	}
    }
    
    // erase removes any user of loc.
    func (e *edgeState) erase(loc Location) {
    	cr := e.contents[loc]
    	if cr.c == nil {
    		return
    	}
    	vid := cr.vid
    
    	if cr.final {
    		// Add a destination to move this value back into place.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 17:49:56 UTC 2023
    - 87.2K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/transforms/sparsecore/embedding_pipelining.cc

      // Erase original while op and temporary functions. Note, we use the non_tpu
      // function in the output graph.
      symbol_table.lookup(orig_callers.forward.getF())->erase();
      symbol_table.lookup(orig_callers.core_tpu.getF())->erase();
      symbol_table.lookup(orig_callers.backward.getF())->erase();
      orig_while_op.body_function().erase();
      orig_while_op.erase();
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 92.9K bytes
    - Viewed (0)
  6. tensorflow/compiler/jit/deadness_analysis.cc

        if (!is_converged) {
          for (Node* n : topo) {
            for (int oid = 0; oid < n->num_outputs(); ++oid) {
              predicate_map_.erase(TensorId(n->name(), oid));
            }
            predicate_map_.erase(TensorId(n->name(), Graph::kControlSlot));
          }
        }
    
        if (success != nullptr) {
          *success = is_converged;
        }
      }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 12 06:33:33 UTC 2024
    - 60.4K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/lite/flatbuffer_import.cc

                cst.getValueAttr());
            full_range_const = new_op.getOutput();
          }
          use.set(full_range_const);
        }
        if (cst.use_empty()) cst.erase();
      });
      return func;
    }
    
    // Helper method that returns the index of the tensor with name 'tensor_name'
    // in the list of tensor names 'tensors'. It allows excluding some indices.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 21 18:21:50 UTC 2024
    - 66.8K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/dep-man/01-core-dependency-management/dependency_verification.adoc

    2. you might want to add generated checksums to the list above
    3. when _updating_ dependency verification file with more secure checksums, you don't want to accidentally erase checksums
    
    [[sec:signature-verification]]
    == Verifying dependency signatures
    
    In addition to <<sec:checksum-verification,checksums>>, Gradle supports verification of signatures.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 07 20:36:31 UTC 2024
    - 56.7K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/tests/tpu_cluster_formation.mlir

    // CHECK: "tf.opB"([[REPLICATE]]#0)
    
    // -----
    
    // TF produces Identity ops between TPUReplicatedOutput and
    // TPUPartitionedOutputV2 ops. This test ensures that they are erased
    // and not considered within the clustered computation. It also ensures that
    // the expected interleaving pattern is present in the output.
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 22:03:30 UTC 2024
    - 53.9K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/tests/convert_control_to_data_outputs.mlir

    // Do not convert control outputs to chains in the presence of an op with
    // unknown side effects in the while body.
    // This test checks that loop signatures are unchanged and no control output is
    // erased from while loop body.
    
    // CHECK-LABEL: func @unknown_resource_op_while_body
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 18:35:00 UTC 2024
    - 68.9K bytes
    - Viewed (0)
Back to top