Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 111 for t_in (0.05 sec)

  1. tensorflow/c/c_api_test.cc

      auto deallocator = [](void* data, size_t len, void* arg) {};
      unique_tensor_ptr t_in(TF_NewTensor(TF_STRING, nullptr, 0, &tstr[0],
                                          sizeof(tstr), deallocator, nullptr),
                             TF_DeleteTensor);
    
      // Create a TF_Operation with the attribute t_in
      auto desc = init("tensor");
      TF_SetAttrTensor(desc, "v", t_in.get(), s_);
      ASSERT_EQ(TF_OK, TF_GetCode(s_)) << TF_Message(s_);
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 15 03:35:10 UTC 2024
    - 96.9K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/stablehlo/transforms/composite_avg_pool.cc

    namespace odml {
    
    using mhlo::CompositeOp;
    
    // Struct for holding composite attrs for torch average pool as CC types.
    struct TorchAvgPoolData {
      int n;  // Batch.
      int c;  // Channels.
    
      int h_in;  // Input height.
      int w_in;  // Input width.
    
      int h_out;  // Output height.
      int w_out;  // Output width.
    
      int kh;  // Kernel height.
      int kw;  // Kernel width.
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 28 23:16:05 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  3. src/net/http/cookiejar/punycode.go

    	if firstTime {
    		delta /= damp
    	} else {
    		delta /= 2
    	}
    	delta += delta / numPoints
    	k := int32(0)
    	for delta > ((base-tmin)*tmax)/2 {
    		delta /= base - tmin
    		k += base
    	}
    	return k + (base-tmin+1)*delta/(delta+skew)
    }
    
    // Strictly speaking, the remaining code below deals with IDNA (RFC 5890 and
    // friends) and not Punycode (RFC 3492) per se.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 10 23:42:56 UTC 2021
    - 3.4K bytes
    - Viewed (0)
  4. src/vendor/golang.org/x/net/idna/punycode.go

    	if firstTime {
    		delta /= damp
    	} else {
    		delta /= 2
    	}
    	delta += delta / numPoints
    	k := int32(0)
    	for delta > ((base-tmin)*tmax)/2 {
    		delta /= base - tmin
    		k += base
    	}
    	return k + (base-tmin+1)*delta/(delta+skew)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 09 20:10:36 UTC 2021
    - 4.6K bytes
    - Viewed (0)
  5. pkg/ctrlz/assets/static/css/fonts.css

      font-style: normal;
      font-weight: 100;
      src: local('Roboto Thin'), local('Roboto-Thin'), url(https://fonts.gstatic.com/s/roboto/v19/KFOkCnqEu92Fr1MmgVxEIzIXKMnyrYk.woff2) format('woff2');
      unicode-range: U+1F00-1FFF;
    }
    /* greek */
    @font-face {
      font-family: 'Roboto';
      font-style: normal;
      font-weight: 100;
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 23 17:08:31 UTC 2023
    - 27.6K bytes
    - Viewed (0)
  6. okhttp/src/main/kotlin/okhttp3/internal/idn/Punycode.kt

          when {
            first -> delta / DAMP
            else -> delta / 2
          }
        delta += (delta / numpoints)
        var k = 0
        while (delta > ((BASE - TMIN) * TMAX) / 2) {
          delta /= (BASE - TMIN)
          k += BASE
        }
        return k + (((BASE - TMIN + 1) * delta) / (delta + SKEW))
      }
    
      private fun String.requiresEncode(
        pos: Int,
        limit: Int,
      ): Boolean {
        for (i in pos until limit) {
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Wed Apr 03 03:04:50 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tfrt/tests/tfrt_fallback/batching_fallback.mlir

          batch_timeout_micros = 1000000,
          container = "container",
          shared_name = "shared_name",
          batching_queue = "batching_queue",
          enable_large_batch_splitting = false,
          Tin = [i32],
          Tcaptured = [i32],
          Tout = [i32]} : 1
    
      %result_2 = tfrt_fallback_async.batch_function device("/device:CPU:0") @matmul_cpu (%a2, %b) {
          num_batch_threads = 1,
          max_batch_size = 4,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jul 18 22:58:56 UTC 2023
    - 8.6K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/tests/graphdef2mlir/force_shared_name_for_resource_ops.pbtxt

        value {
          shape {
          }
        }
      }
      attr {
        key: "shared_name"
        value {
          s: ""
        }
      }
    }
    node {
      name: "Call"
      op: "PartitionedCall"
      attr {
        key: "Tin"
        value {
          list {
          }
        }
      }
      attr {
        key: "Tout"
        value {
          list {
            type: DT_RESOURCE
          }
        }
      }
      attr {
        key: "f"
        value {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Aug 31 02:37:48 UTC 2021
    - 5.5K bytes
    - Viewed (0)
  9. tensorflow/c/kernels/merge_summary_op.cc

        for (int i = 0; i < TF_TensorElementCount(safe_input_ptr.get()); ++i) {
          const tensorflow::tstring& s_in = tags_array[i];
          tensorflow::Summary summary_in;
          if (!tensorflow::ParseProtoUnlimited(&summary_in, s_in)) {
            TF_SetStatus(status.get(), TF_INVALID_ARGUMENT,
                         "Could not parse one of the summary inputs");
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Mar 31 03:28:11 UTC 2021
    - 4.7K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/tests/mlir2graphdef/function-order.mlir

        // CHECK-NEXT: op: "PartitionedCall"
        // CHECK:   func {
        // CHECK:     name: "foo"
        // CHECK:   }
        // CHECK: }
        %0 = tf_executor.island wraps "tf.PartitionedCall"() {Tin = [], Tout = [], config = "", config_proto = "", device = "", executor_type = "", f = @foo, name = "Call_foo"} : () -> ()
        tf_executor.fetch
      }
      func.return
    }
    
    // CHECK:      library {
    // CHECK:        function {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 17 18:52:47 UTC 2023
    - 2.7K bytes
    - Viewed (0)
Back to top