Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 44 for inputs_ (0.14 sec)

  1. cmd/object-handlers_test.go

    	}
    	// iterate through the above set of inputs and upload the object.
    	for i, input := range putObjectInputs {
    		// uploading the object.
    		_, err := obj.PutObject(context.Background(), input.bucketName, input.objectName, mustGetPutObjReader(t, bytes.NewReader(input.textData), input.contentLength, input.metaData[""], ""), ObjectOptions{UserDefined: input.metaData})
    		// if object upload fails stop the test.
    		if err != nil {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:50:49 UTC 2024
    - 161.9K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/ir/tf_ops_n_z.cc

      //   invariant, this does not hold as shapes can differ.
      // * All three pairs using cond inputs, body inputs and results as operand is
      //   a common source for all three.
      // * Body result and cond inputs to call the cond function for the subsequent
      //   iterations. Similarly, Body result should be compatible with body inputs
      //   and op results.
      //
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 09 22:07:10 UTC 2024
    - 170.8K bytes
    - Viewed (0)
  3. tensorflow/compiler/jit/extract_outside_compilation_pass.cc

        }
        for (auto edge : n->in_edges()) {
          inputs[index] =
              NodeDefBuilder::NodeOut{edge->src()->name(), edge->src_output(),
                                      edge->src()->output_type(edge->src_output())};
        }
      }
      send_from_host_builder.Input(inputs);
      send_from_host_builder.Input(key_placeholder->name(), 0, DT_STRING);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 12 06:33:33 UTC 2024
    - 104.7K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/quantization/tensorflow/python/integration_test/quantize_model_test.py

        # Create and save a simple model that involves a hash table.
        inputs, outputs = self._create_and_save_vocab_table_lookup_qat_model_tf1(
            self._input_saved_model_path, tags, signature_def_key
        )
    
        # Make sure that the desired input key and output key is present.
        self.assertIn('input_vocabs', inputs.keys())
        self.assertIn('lookup', outputs.keys())
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 17 03:36:50 UTC 2024
    - 235.6K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/lite/ir/tfl_ops.cc

          return op.emitOpError(
              "has mismatched quantized axes of input and output");
        }
      }
    
      return success();
    }
    
    static void BuildTransposeOp(OpBuilder* builder, OperationState& result,
                                 Value input, Value perm) {
      // Output size is only known if input is ranked and perm is a constant.
      auto input_type = input.getType().cast<TensorType>();
      DenseIntElementsAttr perm_const;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 169.2K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/tests/extract_outside_compilation.mlir

        func.return %1 : tensor<2xi32>
      }
    
      //  Tests that all inputs to a function are passed and all outputs are returned for an outside compilation cluster
      //  with dynamic-shaped inputs/outputs. This test case tests that if another outside compiled returns
      //  only statically-shaped outputs, the value consumed by an outside compiled op with some dynamically shaped inputs is
      //  sent back to the host.
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Oct 31 08:59:10 UTC 2023
    - 129.6K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/ir/tf_ops_a_m.cc

      if (max && !IsOfRankedFloatTensorType(max, 1))
        return op.emitOpError("requires max to be a 1d float tensor");
    
      Value inputs = op.getInputs();
      if (!HasRankAtLeast(inputs, 1))
        return op.emitError("requires inputs to be at least 1d float tensor");
    
      int64_t num_bits = op.getNumBits();
      if (num_bits < 2 || num_bits > 16) {
        return op.emitOpError(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 146.7K bytes
    - Viewed (0)
  8. tensorflow/compiler/jit/encapsulate_subgraphs_pass_test.cc

                                   " input ", i, ", expected control input ",
                                   a.input(i), " got ", b.input(i), " expected:\n",
                                   a.DebugString(), "\ngot:\n", b.DebugString());
            }
            return false;
          }
          control_input_a.insert(a.input(i));
          control_input_b.insert(b.input(i));
        } else if (a.input(i) != b.input(i)) {
          if (diff) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 08:47:20 UTC 2024
    - 113.3K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/transforms/shape_inference.cc

          SmallVector<ValuePort, 4> inputs;
          auto res = ComputeInputsRequiredForOutput(front, &inputs);
          if (failed(res)) {
            // Abort if unable to find which required inputs need to be computed.
            worklist.clear();
            break;
          }
    
          if (!inputs.empty()) {
            // Enqueue required computation followed by its required operands in
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Jun 08 07:28:49 UTC 2024
    - 134.1K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/tests/tpu_rewrite.mlir

        func.return %1, %3 : tensor<*xi32>, tensor<*xi1>
      }
    }
    
    // -----
    
    // Tests inputs are correctly split and fed into TPU computation for tiled input
    // sharding.
    
    // The following OpSharding is used for TPU computation inputs in below test:
    // Proto debug string:
    //  input 0
    //   type: OTHER
    //   tile_assignment_dimensions: 1
    //   tile_assignment_dimensions: 2
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 22:03:30 UTC 2024
    - 172.9K bytes
    - Viewed (0)
Back to top