Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for le (0.11 sec)

  1. tensorflow/c/c_api.cc

        Node* new_node = parent->graph.FindNodeId(i);
        if (new_node == nullptr) continue;
        parent->name_map[new_node->name()] = new_node;
      }
    
      // Populate 'outputs'.
      DCHECK_LE(loop_outputs.size(), num_loop_vars);
      for (int i = 0; i < loop_outputs.size(); ++i) {
        outputs[i] = {ToOperation(loop_outputs[i].node()), loop_outputs[i].index()};
      }
    }
    
    }  // namespace
    C++
    - Registered: Tue Apr 30 12:39:09 GMT 2024
    - Last Modified: Mon Apr 15 03:35:10 GMT 2024
    - 102.3K bytes
    - Viewed (0)
  2. tensorflow/c/c_api_test.cc

      EXPECT_EQ(TF_OK, TF_GetCode(s_)) << TF_Message(s_);
      for (int i = 0; i < 2; ++i) {
        int le = list_lens[i];
        int la = values[i]->length;
        const void* e = list_ptrs[i];
        const void* a = values[i]->data;
        EXPECT_EQ(le, la) << i;
        EXPECT_EQ(0, memcmp(e, a, std::min(le, la))) << i;
        TF_DeleteBuffer(values[i]);
      }
    }
    
    TEST_F(CApiAttributesTest, Tensor) {
    C++
    - Registered: Tue Apr 30 12:39:09 GMT 2024
    - Last Modified: Mon Apr 15 03:35:10 GMT 2024
    - 96.9K bytes
    - Viewed (3)
Back to top